| 1 | <?php |
||
| 7 | final class DoormanConnectorTask implements Task |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var array |
||
| 11 | */ |
||
| 12 | private $config; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param array $config |
||
| 16 | */ |
||
| 17 | 1 | public function __construct(array $config) |
|
| 21 | |||
| 22 | /** |
||
| 23 | * @inheritdoc |
||
| 24 | * |
||
| 25 | * @return string |
||
| 26 | */ |
||
| 27 | 1 | public function serialize() |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @inheritdoc |
||
| 34 | * |
||
| 35 | * @param string $serialized |
||
| 36 | */ |
||
| 37 | public function unserialize($serialized) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @inheritdoc |
||
| 44 | * |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | public function getHandler() |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @inheritdoc |
||
| 54 | * |
||
| 55 | * @return array |
||
| 56 | */ |
||
| 57 | public function getData() |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @inheritdoc |
||
| 64 | * |
||
| 65 | * @return bool |
||
| 66 | */ |
||
| 67 | 1 | public function ignoresRules() |
|
| 71 | |||
| 72 | /** |
||
| 73 | * @inheritdoc |
||
| 74 | * |
||
| 75 | * @return bool |
||
| 76 | */ |
||
| 77 | 1 | public function stopsSiblings() |
|
| 81 | |||
| 82 | /** |
||
| 83 | * @inheritdoc |
||
| 84 | * |
||
| 85 | * @return bool |
||
| 86 | */ |
||
| 87 | 1 | public function canRunTask() |
|
| 91 | } |
||
| 92 |