@@ -67,7 +67,7 @@ |
||
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
70 | - * @param mixed $condition |
|
70 | + * @param boolean $condition |
|
71 | 71 | * @param callable $callback |
72 | 72 | * |
73 | 73 | * @return CriteriaSet |
@@ -209,7 +209,7 @@ |
||
209 | 209 | } |
210 | 210 | |
211 | 211 | /** |
212 | - * @return string |
|
212 | + * @return \DateTime|null |
|
213 | 213 | */ |
214 | 214 | public function getIssueInstantDateTime() |
215 | 215 | { |
@@ -73,7 +73,7 @@ |
||
73 | 73 | } |
74 | 74 | |
75 | 75 | /** |
76 | - * @return \string[] |
|
76 | + * @return string[] |
|
77 | 77 | */ |
78 | 78 | public function getAllAttributeValues() |
79 | 79 | { |
@@ -128,7 +128,7 @@ |
||
128 | 128 | } |
129 | 129 | |
130 | 130 | /** |
131 | - * @param int|string|\DateTime $sessionNotOnOrAfter |
|
131 | + * @param integer $sessionNotOnOrAfter |
|
132 | 132 | * |
133 | 133 | * @return AuthnStatement |
134 | 134 | */ |
@@ -162,7 +162,7 @@ |
||
162 | 162 | } |
163 | 163 | |
164 | 164 | /** |
165 | - * @return int|null |
|
165 | + * @return string|null |
|
166 | 166 | */ |
167 | 167 | public function getNotBeforeString() |
168 | 168 | { |
@@ -75,7 +75,7 @@ |
||
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |
78 | - * @param int|string|\DateTime $notBefore |
|
78 | + * @param integer $notBefore |
|
79 | 79 | * |
80 | 80 | * @return SubjectConfirmationData |
81 | 81 | */ |
@@ -304,7 +304,7 @@ |
||
304 | 304 | } |
305 | 305 | |
306 | 306 | /** |
307 | - * @param Signature|null $signature |
|
307 | + * @param Signature $signature |
|
308 | 308 | * |
309 | 309 | * @return EntityDescriptor |
310 | 310 | */ |
@@ -37,7 +37,7 @@ |
||
37 | 37 | } |
38 | 38 | |
39 | 39 | /** |
40 | - * @return \string[] |
|
40 | + * @return string[] |
|
41 | 41 | */ |
42 | 42 | public function getAllCertificates() |
43 | 43 | { |
@@ -138,7 +138,7 @@ |
||
138 | 138 | } |
139 | 139 | |
140 | 140 | /** |
141 | - * @return \PHPUnit_Framework_MockObject_MockObject|\LightSaml\Context\ContextInterface |
|
141 | + * @return \LightSaml\Context\ContextInterface |
|
142 | 142 | */ |
143 | 143 | private function getContextMock() |
144 | 144 | { |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | $composite = new CompositeAction([$action1, $action2]); |
59 | 59 | |
60 | - $composite->map(function (ActionInterface $action) use ($action1, $action2, &$action1mapped, &$action2mapped, &$action2replacement) { |
|
60 | + $composite->map(function(ActionInterface $action) use ($action1, $action2, &$action1mapped, &$action2mapped, &$action2replacement) { |
|
61 | 61 | if ($action === $action1) { |
62 | 62 | $action1mapped = true; |
63 | 63 | |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | $outerComposite = new CompositeAction([new FooAction(), $innerComposite, new BarAction()]); |
112 | 112 | $this->assertCount(3, $outerComposite->getChildren()); |
113 | 113 | |
114 | - $actualValue = (string)$outerComposite; |
|
114 | + $actualValue = (string) $outerComposite; |
|
115 | 115 | |
116 | 116 | $expectedValue = <<<EOT |
117 | 117 | { |