think\model\Merge::all PHP Метод

all() публичный статический Метод

查找所有记录
public static all ( mixed $data = null, string $with = [], $cache = false ) : array | false | string
$data mixed 主键列表或者查询条件(闭包)
$with string 关联预查询
Результат array | false | string
    public static function all($data = null, $with = [], $cache = false)
    {
        $query = self::parseQuery($data, $with, $cache);
        $query = self::attachQuery($query);
        return $query->select($data);
    }