ok
Direktori : /home2/selectio/public_html/fms-worksuite/vendor/phpro/grumphp/src/Task/ |
Current File : /home2/selectio/public_html/fms-worksuite/vendor/phpro/grumphp/src/Task/TaskInterface.php |
<?php declare(strict_types=1); namespace GrumPHP\Task; use GrumPHP\Runner\TaskResultInterface; use GrumPHP\Task\Config\TaskConfigInterface; use GrumPHP\Task\Context\ContextInterface; use Symfony\Component\OptionsResolver\OptionsResolver; interface TaskInterface { public static function getConfigurableOptions(): OptionsResolver; public function canRunInContext(ContextInterface $context): bool; public function run(ContextInterface $context): TaskResultInterface; public function getConfig(): TaskConfigInterface; public function withConfig(TaskConfigInterface $config): TaskInterface; }