App\Services\Form\Deployment\DeploymentForm::__construct PHP Метод

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

Create a new form service instance.
public __construct ( App\Services\Validation\ValidableInterface $validator, App\Repositories\Project\ProjectInterface $project, App\Services\Deployment\DeployCommanderInterface $deployCommander ) : void
$validator App\Services\Validation\ValidableInterface
$project App\Repositories\Project\ProjectInterface
$deployCommander App\Services\Deployment\DeployCommanderInterface
Результат void
    public function __construct(ValidableInterface $validator, ProjectInterface $project, DeployCommanderInterface $deployCommander)
    {
        $this->validator = $validator;
        $this->project = $project;
        $this->deployCommander = $deployCommander;
    }