Completed
Branch 09branch (740a7d)
by Anton
02:52
created
source/functions.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
      * @param array  $values  Arguments (key=>value). Will skip n
74 74
      * @param string $prefix  Value prefix, "{" by default.
75 75
      * @param string $postfix Value postfix "}" by default.
76
-     * @return mixed
76
+     * @return string
77 77
      */
78 78
     function interpolate($format, array $values, $prefix = '{', $postfix = '}')
79 79
     {
Please login to merge, or discard this patch.
source/Spiral/Http/Routing/Router.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -50,9 +50,6 @@
 block discarded – undo
50 50
     /**
51 51
      * {@inheritdoc}
52 52
      *
53
-     * @param RouteInterface|array $default Default route or options to construct instance of
54
-     *                                      DirectRoute.
55
-     * @param bool                 $keepOutput
56 53
      * @throws RouterException
57 54
      */
58 55
     public function __construct(ContainerInterface $container, $basePath = '/')
Please login to merge, or discard this patch.
source/Spiral/Console/Command.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
      * Input argument.
223 223
      *
224 224
      * @param string $name
225
-     * @return mixed
225
+     * @return string|null
226 226
      */
227 227
     protected function argument($name)
228 228
     {
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
     /**
233 233
      * Table helper instance with configured header and pre-defined set of rows.
234 234
      *
235
-     * @param array  $headers
235
+     * @param string[]  $headers
236 236
      * @param array  $rows
237 237
      * @param string $style
238 238
      * @return Table
Please login to merge, or discard this patch.
source/Spiral/Views/Processors/EvaluateProcessor.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,6 @@
 block discarded – undo
69 69
     /**
70 70
      * {@inheritdoc}
71 71
      *
72
-     * @param Isolator|null $isolator
73 72
      */
74 73
     public function modify(
75 74
         EnvironmentInterface $environment,
Please login to merge, or discard this patch.
source/Spiral/Commands/ORM/SchemaCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
     }
133 133
 
134 134
     /**
135
-     * @param $builder
135
+     * @param SchemaBuilder $builder
136 136
      */
137 137
     protected function showChanges($builder)
138 138
     {
Please login to merge, or discard this patch.
source/Spiral/Views/Processors/PrettifyProcessor.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
      * @param array  $values  Arguments (key=>value). Will skip n
74 74
      * @param string $prefix  Value prefix, "{" by default.
75 75
      * @param string $postfix Value postfix "}" by default.
76
-     * @return mixed
76
+     * @return string
77 77
      */
78 78
     function interpolate($format, array $values, $prefix = '{', $postfix = '}')
79 79
     {
Please login to merge, or discard this patch.
source/Spiral/Debug/LogManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
      *
112 112
      * @param string $channel
113 113
      *
114
-     * @return array
114
+     * @return HandlerInterface[]
115 115
      */
116 116
     protected function createHandlers(string $channel): array
117 117
     {
Please login to merge, or discard this patch.