mtv\models\Collection::get PHP Method

get() public static method

Create, fetch and return a single model instance with primary keys
public static get ( $args )
    public static function get($args)
    {
        $model = new static::$model($args);
        $model->fetch();
        return $model;
    }