Completed
Push — master ( 3ba758...b5e37b )
by Liaw
02:27
created
src/LightSaml/Criteria/CriteriaSet.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/LightSaml/Model/Assertion/Assertion.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -209,7 +209,7 @@
 block discarded – undo
209 209
     }
210 210
 
211 211
     /**
212
-     * @return string
212
+     * @return \DateTime|null
213 213
      */
214 214
     public function getIssueInstantDateTime()
215 215
     {
Please login to merge, or discard this patch.
src/LightSaml/Model/Assertion/Attribute.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
     }
74 74
 
75 75
     /**
76
-     * @return \string[]
76
+     * @return string[]
77 77
      */
78 78
     public function getAllAttributeValues()
79 79
     {
Please login to merge, or discard this patch.
src/LightSaml/Model/Assertion/AuthnStatement.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
     }
129 129
 
130 130
     /**
131
-     * @param int|string|\DateTime $sessionNotOnOrAfter
131
+     * @param integer $sessionNotOnOrAfter
132 132
      *
133 133
      * @return AuthnStatement
134 134
      */
Please login to merge, or discard this patch.
src/LightSaml/Model/Assertion/Conditions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
     }
163 163
 
164 164
     /**
165
-     * @return int|null
165
+     * @return string|null
166 166
      */
167 167
     public function getNotBeforeString()
168 168
     {
Please login to merge, or discard this patch.
src/LightSaml/Model/Assertion/SubjectConfirmationData.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
     }
76 76
 
77 77
     /**
78
-     * @param int|string|\DateTime $notBefore
78
+     * @param integer $notBefore
79 79
      *
80 80
      * @return SubjectConfirmationData
81 81
      */
Please login to merge, or discard this patch.
src/LightSaml/Model/Metadata/EntityDescriptor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -304,7 +304,7 @@
 block discarded – undo
304 304
     }
305 305
 
306 306
     /**
307
-     * @param Signature|null $signature
307
+     * @param Signature $signature
308 308
      *
309 309
      * @return EntityDescriptor
310 310
      */
Please login to merge, or discard this patch.
src/LightSaml/Model/XmlDSig/SignatureXmlReader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     }
38 38
 
39 39
     /**
40
-     * @return \string[]
40
+     * @return string[]
41 41
      */
42 42
     public function getAllCertificates()
43 43
     {
Please login to merge, or discard this patch.
tests/LightSaml/Tests/Action/CompositeActionTest.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 {
Please login to merge, or discard this patch.