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

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

查找单条记录
public static get ( mixed $data = null, string $with = [], boolean $cache = false ) : Model
$data mixed 主键值或者查询条件(闭包)
$with string 关联预查询
$cache boolean 是否缓存
Результат think\Model
    public static function get($data = null, $with = [], $cache = false)
    {
        $query = self::parseQuery($data, $with, $cache);
        $query = self::attachQuery($query);
        return $query->find($data);
    }