Skip to content

Instantly share code, notes, and snippets.

@Cylindric
Created July 30, 2015 22:03
Show Gist options
  • Save Cylindric/d52f3bb0141e08f1d0e7 to your computer and use it in GitHub Desktop.
Save Cylindric/d52f3bb0141e08f1d0e7 to your computer and use it in GitHub Desktop.
$character = $this->Characters->find()
->contain(['Training'])
->where(['Characters.id' => $char_id])
->matching('Training', function ($q) use ($skill_id) {
return $q->where(['Training.skill_id' => $skill_id]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment