Fix wrong result type on getById.
This commit is contained in:
parent
fe61d14713
commit
9689ac82cf
@ -701,11 +701,12 @@ class ModelMySQL {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtiene una instancia según su primary key (generalmente id).
|
* Obtiene una instancia según su primary key (generalmente id).
|
||||||
|
* Si no encuentra una instancia, devuelve nulo.
|
||||||
*
|
*
|
||||||
* @param mixed $id
|
* @param mixed $id
|
||||||
* @return ModelMySQL
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public static function getById($id) : ModelMySQL {
|
public static function getById($id) {
|
||||||
return static::where(static::$primaryKey, $id)->getFirst();
|
return static::where(static::$primaryKey, $id)->getFirst();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user