Created
February 18, 2016 09:59
-
-
Save lorenzo/fbe7746268f9e517a9c5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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