| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class DelegateDirective extends Directive |
||
| 11 | { |
||
| 12 | public const TYPE = 'Dialog.Delegate'; |
||
| 13 | |||
| 14 | 2 | public function __construct( |
|
| 15 | public ?Intent $updatedIntent = null |
||
| 16 | ) { |
||
| 17 | 2 | parent::__construct(self::TYPE); |
|
| 18 | } |
||
| 19 | |||
| 20 | 2 | public static function create(?Intent $intent = null): self |
|
| 23 | } |
||
| 24 | } |
||
| 25 |