Habari\Method::create PHP Метод

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

Quick-create for building an instance of Method
public static create ( string $class, string $method ) : Method
$class string The name of the class
$method string The method of the class
Результат Method An instance of Method to represent the method call
    public static function create($class, $method)
    {
        $instance = new Method($class, $method);
        return $instance;
    }