Skip to content

Instantly share code, notes, and snippets.

@lorenzo
Created February 18, 2016 09:59
Show Gist options
  • Save lorenzo/fbe7746268f9e517a9c5 to your computer and use it in GitHub Desktop.
Save lorenzo/fbe7746268f9e517a9c5 to your computer and use it in GitHub Desktop.
<?php
->finder('comment', [
'finder' => 'byComment'
])
...
public function findByComment($query, $options) {
return $query->matching('SomethingHere.Comments', function ($q) use ($options) {
return $q->where(['Comments.id' => $options['comment']]);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment