| 1 | <?php namespace Limoncello\Validation\Rules; |
||
| 28 | abstract class ExecuteRule extends BaseRule implements ExecuteRuleInterface |
||
| 29 | { |
||
| 30 | /** |
||
| 31 | * @var array |
||
| 32 | */ |
||
| 33 | private $properties; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @var array $properties |
||
| 37 | */ |
||
| 38 | 32 | public function __construct(array $properties = []) |
|
| 42 | |||
| 43 | /** |
||
| 44 | * @inheritdoc |
||
| 45 | */ |
||
| 46 | 31 | public function toBlock(): ExecutionBlockInterface |
|
| 52 | } |
||
| 53 |