* Find records in the database. * * Finding by the primary key: * * * # queries for the model with id=123 * YourModel::find(123); * * # queries for model with id in(1,2,3) * YourModel::find(1,2,3); * * # finding by pk accepts an options array * YourModel::find(123,array('order' => 'name desc')); * * * Finding by using a conditions array: * *
(/* $type, $options */)
source not stored for this graph (policy: none)
no test coverage detected