Parkour\Functor::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        $args = func_get_args();
        if (count($args)) {
            $this->value = array_shift($args);
            $this->hasValue = true;
        }
    }