Fix @return value

This commit is contained in:
Martin Stücklschwaiger 2018-11-29 20:37:03 +01:00 committed by GitHub
parent 320cdf98ee
commit a9e20c39be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2997,7 +2997,7 @@ class Model extends CakeObject implements CakeEventListener {
*
* @param string $type Type of find operation (all / first / count / neighbors / list / threaded)
* @param array $query Option fields (conditions / fields / joins / limit / offset / order / page / group / callbacks)
* @return array|null Array of records, or Null on failure.
* @return array|int|null Array of records, int if the type is count, or Null on failure.
* @link https://book.cakephp.org/2.0/en/models/retrieving-your-data.html
*/
public function find($type = 'first', $query = array()) {