Completed
Push — master ( 9e0ca5...478748 )
by Ehsan
10:57 queued 02:20
created
vendor/symfony/console/Helper/Table.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
      * Sets table column style.
151 151
      *
152 152
      * @param int               $columnIndex Column index
153
-     * @param TableStyle|string $name        The style name or a TableStyle instance
153
+     * @param TableStyle $name        The style name or a TableStyle instance
154 154
      *
155 155
      * @return $this
156 156
      */
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
     /**
200 200
      * Sets the minimum width of all columns.
201 201
      *
202
-     * @param array $widths
202
+     * @param integer[] $widths
203 203
      *
204 204
      * @return $this
205 205
      */
Please login to merge, or discard this patch.
vendor/symfony/console/Question/ChoiceQuestion.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
     /**
127 127
      * Returns the default answer validator.
128 128
      *
129
-     * @return callable
129
+     * @return \Closure
130 130
      */
131 131
     private function getDefaultValidator()
132 132
     {
Please login to merge, or discard this patch.
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/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.