Completed
Push — master ( 96d573...f9f049 )
by Ehsan
07:54
created
vendor/symfony/console/Style/SymfonyStyle.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
     /**
131 131
      * Formats a command comment.
132 132
      *
133
-     * @param string|array $message
133
+     * @param string $message
134 134
      */
135 135
     public function comment($message)
136 136
     {
@@ -385,6 +385,10 @@  discard block
 block discarded – undo
385 385
         }, array_merge(array($this->bufferedOutput->fetch()), (array) $messages));
386 386
     }
387 387
 
388
+    /**
389
+     * @param string $type
390
+     * @param string $style
391
+     */
388 392
     private function createBlock($messages, $type = null, $style = null, $prefix = ' ', $padding = false, $escape = false)
389 393
     {
390 394
         $indentLength = 0;
Please login to merge, or discard this patch.
vendor/symfony/console/Tests/ApplicationTest.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -52,6 +52,11 @@
 block discarded – undo
52 52
         require_once self::$fixturesPath.'/FooSubnamespaced2Command.php';
53 53
     }
54 54
 
55
+    /**
56
+     * @param string $text
57
+     *
58
+     * @return string
59
+     */
55 60
     protected function normalizeLineBreaks($text)
56 61
     {
57 62
         return str_replace(PHP_EOL, "\n", $text);
Please login to merge, or discard this patch.
vendor/symfony/console/Tests/EventListener/ErrorListenerTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -125,11 +125,17 @@
 block discarded – undo
125 125
         return $this->getMockForAbstractClass(LoggerInterface::class);
126 126
     }
127 127
 
128
+    /**
129
+     * @param integer $exitCode
130
+     */
128 131
     private function getConsoleTerminateEvent(InputInterface $input, $exitCode)
129 132
     {
130 133
         return new ConsoleTerminateEvent(new Command('test:run'), $input, $this->getOutput(), $exitCode);
131 134
     }
132 135
 
136
+    /**
137
+     * @return OutputInterface
138
+     */
133 139
     private function getOutput()
134 140
     {
135 141
         return $this->getMockBuilder(OutputInterface::class)->getMock();
Please login to merge, or discard this patch.
vendor/symfony/console/Tests/Helper/ProgressBarTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -765,6 +765,9 @@
 block discarded – undo
765 765
         return new StreamOutput(fopen('php://memory', 'r+', false), $verbosity, $decorated);
766 766
     }
767 767
 
768
+    /**
769
+     * @param string $expected
770
+     */
768 771
     protected function generateOutput($expected)
769 772
     {
770 773
         $count = substr_count($expected, "\n");
Please login to merge, or discard this patch.
vendor/symfony/console/Tests/Helper/ProgressIndicatorTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -174,6 +174,9 @@
 block discarded – undo
174 174
         return new StreamOutput(fopen('php://memory', 'r+', false), $verbosity, $decorated);
175 175
     }
176 176
 
177
+    /**
178
+     * @param string $expected
179
+     */
177 180
     protected function generateOutput($expected)
178 181
     {
179 182
         $count = substr_count($expected, "\n");
Please login to merge, or discard this patch.
vendor/symfony/console/Tests/Helper/QuestionHelperTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -812,6 +812,9 @@  discard block
 block discarded – undo
812 812
         new ChoiceQuestion('Question', array(), 'irrelevant');
813 813
     }
814 814
 
815
+    /**
816
+     * @param string $input
817
+     */
815 818
     protected function getInputStream($input)
816 819
     {
817 820
         $stream = fopen('php://memory', 'r+', false);
@@ -826,6 +829,9 @@  discard block
 block discarded – undo
826 829
         return new StreamOutput(fopen('php://memory', 'r+', false));
827 830
     }
828 831
 
832
+    /**
833
+     * @return \Symfony\Component\Console\Input\InputInterface
834
+     */
829 835
     protected function createInputInterfaceMock($interactive = true)
830 836
     {
831 837
         $mock = $this->getMockBuilder('Symfony\Component\Console\Input\InputInterface')->getMock();
Please login to merge, or discard this patch.
vendor/symfony/debug/ErrorHandler.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
     /**
106 106
      * Registers the error handler.
107 107
      *
108
-     * @param self|null $handler The handler to register
108
+     * @param null|\self $handler The handler to register
109 109
      * @param bool      $replace Whether to replace or not any existing handler
110 110
      *
111 111
      * @return self The registered error handler
@@ -332,6 +332,7 @@  discard block
 block discarded – undo
332 332
 
333 333
     /**
334 334
      * Re-registers as a PHP error handler if levels changed.
335
+     * @param integer $prev
335 336
      */
336 337
     private function reRegister($prev)
337 338
     {
Please login to merge, or discard this patch.
vendor/symfony/debug/Exception/ContextErrorException.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -22,6 +22,13 @@
 block discarded – undo
22 22
 {
23 23
     private $context = array();
24 24
 
25
+    /**
26
+     * @param string $message
27
+     * @param integer $code
28
+     * @param integer $severity
29
+     * @param string $filename
30
+     * @param integer $lineno
31
+     */
25 32
     public function __construct($message, $code, $severity, $filename, $lineno, $context = array())
26 33
     {
27 34
         parent::__construct($message, $code, $severity, $filename, $lineno);
Please login to merge, or discard this patch.
vendor/symfony/debug/Exception/FlattenException.php 1 patch
Doc Comments   +19 added lines patch added patch discarded remove patch
@@ -33,6 +33,9 @@  discard block
 block discarded – undo
33 33
     private $file;
34 34
     private $line;
35 35
 
36
+    /**
37
+     * @param integer $statusCode
38
+     */
36 39
     public static function create(\Exception $exception, $statusCode = null, array $headers = array())
37 40
     {
38 41
         $e = new static();
@@ -107,6 +110,9 @@  discard block
 block discarded – undo
107 110
         return $this->class;
108 111
     }
109 112
 
113
+    /**
114
+     * @param string $class
115
+     */
110 116
     public function setClass($class)
111 117
     {
112 118
         $this->class = $class;
@@ -117,6 +123,9 @@  discard block
 block discarded – undo
117 123
         return $this->file;
118 124
     }
119 125
 
126
+    /**
127
+     * @param string $file
128
+     */
120 129
     public function setFile($file)
121 130
     {
122 131
         $this->file = $file;
@@ -127,6 +136,9 @@  discard block
 block discarded – undo
127 136
         return $this->line;
128 137
     }
129 138
 
139
+    /**
140
+     * @param integer $line
141
+     */
130 142
     public function setLine($line)
131 143
     {
132 144
         $this->line = $line;
@@ -137,6 +149,9 @@  discard block
 block discarded – undo
137 149
         return $this->message;
138 150
     }
139 151
 
152
+    /**
153
+     * @param string $message
154
+     */
140 155
     public function setMessage($message)
141 156
     {
142 157
         $this->message = $message;
@@ -183,6 +198,10 @@  discard block
 block discarded – undo
183 198
         $this->setTrace($exception->getTrace(), $exception->getFile(), $exception->getLine());
184 199
     }
185 200
 
201
+    /**
202
+     * @param string $file
203
+     * @param integer $line
204
+     */
186 205
     public function setTrace($trace, $file, $line)
187 206
     {
188 207
         $this->trace = array();
Please login to merge, or discard this patch.