| Total Complexity | 4 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | final class YamlTask extends BaseTask implements BuilderAwareInterface |
||
| 14 | { |
||
| 15 | use BuilderAwareTrait; |
||
| 16 | use loadTasks; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var array |
||
| 20 | */ |
||
| 21 | private $definition; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * YamlTask constructor. |
||
| 25 | * |
||
| 26 | * @param array $definition |
||
| 27 | */ |
||
| 28 | public function __construct(array $definition) |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | public function run() |
||
| 53 |