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

__construct() публичный Метод

Constructor
public __construct ( string $class, string $method ) : Method
$class string The name of the class
$method string The method of the class to execute
Результат Method The method of the class
    public function __construct($class, $method)
    {
        $this->class = $class;
        $this->method = $method;
    }