Completed
Push — master ( 6abc16...16c08e )
by Korotkov
01:50
created
src/Container.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -249,7 +249,7 @@
 block discarded – undo
249 249
      * @param string $key
250 250
      * @param string $param
251 251
      *
252
-     * @return bool
252
+     * @return boolean|null
253 253
      */
254 254
     public function hasParam(string $key, string $param)
255 255
     {
Please login to merge, or discard this patch.
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -230,11 +230,11 @@
 block discarded – undo
230 230
         }
231 231
     }
232 232
 
233
-     /**
234
-     * @param string $key
235
-     *
236
-     * @return mixed|string
237
-     */
233
+        /**
234
+         * @param string $key
235
+         *
236
+         * @return mixed|string
237
+         */
238 238
     public function getBinding(string $key)
239 239
     {
240 240
         return $this->bind[$key] ?? $key;
Please login to merge, or discard this patch.
src/tests/ContainerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     }
55 55
 
56 56
     /**
57
-     * @return mixed
57
+     * @return ContainerInterface
58 58
      */
59 59
     protected function container(): ContainerInterface
60 60
     {
Please login to merge, or discard this patch.