@@ -128,7 +128,7 @@ |
||
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | /** |
| 131 | - * @param callable|null $endCallable |
|
| 131 | + * @param callable $endCallable |
|
| 132 | 132 | * |
| 133 | 133 | * @return self |
| 134 | 134 | */ |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | /** |
| 73 | 73 | * @inheritdoc |
| 74 | 74 | */ |
| 75 | - public function getStartCallable(): ?callable |
|
| 75 | + public function getStartCallable(): ? callable |
|
| 76 | 76 | { |
| 77 | 77 | return $this->startCallable; |
| 78 | 78 | } |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | /** |
| 89 | 89 | * @inheritdoc |
| 90 | 90 | */ |
| 91 | - public function getEndCallable(): ?callable |
|
| 91 | + public function getEndCallable(): ? callable |
|
| 92 | 92 | { |
| 93 | 93 | return $this->endCallable; |
| 94 | 94 | } |
@@ -128,7 +128,7 @@ |
||
| 128 | 128 | /** |
| 129 | 129 | * @inheritdoc |
| 130 | 130 | */ |
| 131 | - public function getParent(): ?RuleInterface |
|
| 131 | + public function getParent(): ? RuleInterface |
|
| 132 | 132 | { |
| 133 | 133 | return $this->parent; |
| 134 | 134 | } |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | /** |
| 59 | 59 | * @return RuleInterface|null |
| 60 | 60 | */ |
| 61 | - public function getParent(): ?RuleInterface; |
|
| 61 | + public function getParent(): ? RuleInterface; |
|
| 62 | 62 | |
| 63 | 63 | /** |
| 64 | 64 | * @param RuleInterface $rule |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | /** |
| 25 | 25 | * @return string|null |
| 26 | 26 | */ |
| 27 | - public function getParameterName(): ?string; |
|
| 27 | + public function getParameterName(): ? string; |
|
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | 30 | * @return mixed |
@@ -39,5 +39,5 @@ discard block |
||
| 39 | 39 | /** |
| 40 | 40 | * @return array|null |
| 41 | 41 | */ |
| 42 | - public function getMessageContext(): ?array; |
|
| 42 | + public function getMessageContext(): ? array; |
|
| 43 | 43 | } |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | /** |
| 25 | 25 | * @return callable|null |
| 26 | 26 | */ |
| 27 | - public function getStartCallable(): ?callable; |
|
| 27 | + public function getStartCallable(): ? callable; |
|
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | 30 | * @return callable |
@@ -34,5 +34,5 @@ discard block |
||
| 34 | 34 | /** |
| 35 | 35 | * @return callable|null |
| 36 | 36 | */ |
| 37 | - public function getEndCallable(): ?callable; |
|
| 37 | + public function getEndCallable(): ? callable; |
|
| 38 | 38 | } |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | * @param int $code |
| 50 | 50 | * @param array|null $context |
| 51 | 51 | */ |
| 52 | - public function __construct(?string $name, $value, int $code, ?array $context) |
|
| 52 | + public function __construct(? string $name, $value, int $code, ? array $context) |
|
| 53 | 53 | { |
| 54 | 54 | $this->name = $name; |
| 55 | 55 | $this->value = $value; |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | /** |
| 61 | 61 | * @inheritdoc |
| 62 | 62 | */ |
| 63 | - public function getParameterName(): ?string |
|
| 63 | + public function getParameterName(): ? string |
|
| 64 | 64 | { |
| 65 | 65 | return $this->name; |
| 66 | 66 | } |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | /** |
| 85 | 85 | * @inheritdoc |
| 86 | 86 | */ |
| 87 | - public function getMessageContext(): ?array |
|
| 87 | + public function getMessageContext(): ? array |
|
| 88 | 88 | { |
| 89 | 89 | return $this->context; |
| 90 | 90 | } |