1 | <?php declare(strict_types=1); |
||
30 | abstract class ExecuteRule extends BaseRule implements ExecuteRuleInterface |
||
31 | { |
||
32 | /** |
||
33 | * @var array |
||
34 | */ |
||
35 | private $properties; |
||
36 | |||
37 | /** |
||
38 | * @var array $properties |
||
39 | */ |
||
40 | 33 | public function __construct(array $properties = []) |
|
44 | |||
45 | /** |
||
46 | * @inheritdoc |
||
47 | */ |
||
48 | 32 | public function toBlock(): ExecutionBlockInterface |
|
54 | } |
||
55 |