Completed
Push — master ( 8fd614...3478cb )
by Michal
38:15 queued 05:38
created
vendor/robmorgan/phinx/tests/Phinx/Console/Command/InitTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Symfony\Component\Console\Tester\CommandTester;
6 6
 use Symfony\Component\Console\Output\StreamOutput;
7
-use Phinx\Config\Config;
8 7
 use Phinx\Console\Command\Init;
9 8
 
10 9
 class InitTest extends \PHPUnit_Framework_TestCase
Please login to merge, or discard this patch.
vendor/robmorgan/phinx/tests/Phinx/Db/Adapter/MysqlAdapterUnitTest.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -76,6 +76,10 @@  discard block
 block discarded – undo
76 76
     }
77 77
 
78 78
     // helper methods for easy mocking
79
+
80
+    /**
81
+     * @param string $expected_sql
82
+     */
79 83
     private function assertExecuteSql($expected_sql)
80 84
     {
81 85
         $this->conn->expects($this->once())
@@ -83,6 +87,9 @@  discard block
 block discarded – undo
83 87
                    ->with($this->equalTo($expected_sql));
84 88
     }
85 89
 
90
+    /**
91
+     * @param \PHPUnit_Framework_TestResult $returnValue
92
+     */
86 93
     private function assertQuerySql($expectedSql, $returnValue = null)
87 94
     {
88 95
         $expect = $this->conn->expects($this->once())
@@ -93,6 +100,9 @@  discard block
 block discarded – undo
93 100
         }
94 101
     }
95 102
 
103
+    /**
104
+     * @param string $expectedSql
105
+     */
96 106
     private function assertFetchRowSql($expectedSql, $returnValue)
97 107
     {
98 108
         $this->result->expects($this->once())
Please login to merge, or discard this patch.
vendor/robmorgan/phinx/tests/Phinx/Migration/ManagerTest.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Symfony\Component\Console\Output\StreamOutput;
6 6
 use Phinx\Config\Config;
7
-use Phinx\Db\Adapter\MysqlAdapter;
8 7
 use Phinx\Migration\Manager;
9 8
 use Phinx\Migration\Manager\Environment;
10 9
 
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -6,6 +6,9 @@
 block discarded – undo
6 6
 
7 7
 class UtilTest extends \PHPUnit_Framework_TestCase
8 8
 {
9
+    /**
10
+     * @param string $path
11
+     */
9 12
     private function getCorrectedPath($path)
10 13
     {
11 14
         return str_replace('/', DIRECTORY_SEPARATOR, $path);
Please login to merge, or discard this patch.
vendor/sebastian/comparator/src/ArrayComparator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -129,6 +129,9 @@
 block discarded – undo
129 129
         }
130 130
     }
131 131
 
132
+    /**
133
+     * @param string $lines
134
+     */
132 135
     protected function indent($lines)
133 136
     {
134 137
         return trim(str_replace("\n", "\n    ", $lines));
Please login to merge, or discard this patch.
vendor/sebastian/comparator/tests/DOMNodeComparatorTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -98,6 +98,9 @@
 block discarded – undo
98 98
         );
99 99
     }
100 100
 
101
+    /**
102
+     * @param string $content
103
+     */
101 104
     private function createDOMDocument($content)
102 105
     {
103 106
         $document = new DOMDocument;
Please login to merge, or discard this patch.
vendor/sebastian/exporter/tests/ExporterTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -326,6 +326,9 @@
 block discarded – undo
326 326
         $this->assertEquals(array(true), $this->exporter->toArray(true));
327 327
     }
328 328
 
329
+    /**
330
+     * @param string $string
331
+     */
329 332
     private function trimNewline($string)
330 333
     {
331 334
         return preg_replace('/[ ]*\n/', "\n", $string);
Please login to merge, or discard this patch.
vendor/symfony/config/Definition/BaseNode.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,11 +50,17 @@  discard block
 block discarded – undo
50 50
         $this->parent = $parent;
51 51
     }
52 52
 
53
+    /**
54
+     * @param string $key
55
+     */
53 56
     public function setAttribute($key, $value)
54 57
     {
55 58
         $this->attributes[$key] = $value;
56 59
     }
57 60
 
61
+    /**
62
+     * @param string $key
63
+     */
58 64
     public function getAttribute($key, $default = null)
59 65
     {
60 66
         return isset($this->attributes[$key]) ? $this->attributes[$key] : $default;
@@ -123,7 +129,7 @@  discard block
 block discarded – undo
123 129
     /**
124 130
      * Adds an equivalent value.
125 131
      *
126
-     * @param mixed $originalValue
132
+     * @param null|boolean $originalValue
127 133
      * @param mixed $equivalentValue
128 134
      */
129 135
     public function addEquivalentValue($originalValue, $equivalentValue)
Please login to merge, or discard this patch.
vendor/symfony/config/Definition/Builder/ArrayNodeDefinition.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -37,6 +37,7 @@
 block discarded – undo
37 37
 
38 38
     /**
39 39
      * {@inheritdoc}
40
+     * @param string $name
40 41
      */
41 42
     public function __construct($name, NodeParentInterface $parent = null)
42 43
     {
Please login to merge, or discard this patch.
vendor/symfony/config/Definition/Builder/EnumNodeDefinition.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     private $values;
24 24
 
25 25
     /**
26
-     * @param array $values
26
+     * @param string[] $values
27 27
      *
28 28
      * @return EnumNodeDefinition|$this
29 29
      */
Please login to merge, or discard this patch.