Deployer\Task\Task::__construct PHP Method

__construct() public method

public __construct ( string $name, callable $callback = null )
$name string Tasks name
$callback callable Task code.
    public function __construct($name, callable $callback = null)
    {
        $this->name = $name;
        $this->callback = $callback;
    }