Skip to content

Instantly share code, notes, and snippets.

@styks1987
Created January 28, 2016 22:04
Show Gist options
  • Save styks1987/387f5c2a7829a8fc906e to your computer and use it in GitHub Desktop.
Save styks1987/387f5c2a7829a8fc906e to your computer and use it in GitHub Desktop.
<?php
$users = $this->Strategies->Users->find()->contain([
'UserSettings' => function ($q) {
return $q->map(function ($setting) {
return [$setting->id => $setting->users_user_settings->configuration];
});
}
])->toArray();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment