| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | #[Attribute(Attribute::TARGET_METHOD)] |
||
| 17 | #[NamedArgumentConstructor()] |
||
| 18 | class Pipeline |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @Annotation\Attribute(name="pipeline", type="array", required=true) |
||
| 22 | * @var array |
||
| 23 | */ |
||
| 24 | public $pipeline; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @Annotation\Attribute(name="skipNext", type="bool") |
||
| 28 | * @var bool |
||
| 29 | */ |
||
| 30 | public $skipNext; |
||
| 31 | |||
| 32 | public function __construct(array $pipeline = [], bool $skipNext = false) |
||
| 38 |