Completed
Pull Request — master (#4)
by
unknown
02:43
created
src/Action/Type/Generate.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
     }
161 161
 
162 162
     /**
163
-     * @param GenerateUnitInterface|ImportFileUnitInterface $unit
163
+     * @param GenerateUnitInterface $unit
164 164
      * @param int $idx
165 165
      */
166 166
     protected function processAdditions(GenerateUnitInterface $unit, $idx = 0)
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
     }
235 235
 
236 236
     /**
237
-     * @param GenerateUnitInterface|ImportFileUnitInterface $unit
237
+     * @param GenerateUnitInterface $unit
238 238
      * @return array
239 239
      */
240 240
     protected function getMappedRow(GenerateUnitInterface $unit)
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
     }
266 266
 
267 267
     /**
268
-     * @param GenerateUnitInterface|ImportFileUnitInterface $parent
268
+     * @param GenerateUnitInterface $parent
269 269
      */
270 270
     protected function updateParents(GenerateUnitInterface $parent)
271 271
     {
Please login to merge, or discard this patch.
src/Storage/Db/DBALMysqlResource.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
      * @param string $enclosure
94 94
      * @param string $escape
95 95
      * @param string $termination
96
-     * @param bool|true $optionallyEnclosed
96
+     * @param boolean $optionallyEnclosed
97 97
      * @return string
98 98
      */
99 99
     public function getLoadDataSql(
Please login to merge, or discard this patch.
tests/Unit/AbstractUnitTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 class AbstractUnitTest extends \PHPUnit_Framework_TestCase
6 6
 {
7 7
     /**
8
-     * @param $code
9
-     * @return AbstractUnit
8
+     * @param string $code
9
+     * @return \PHPUnit_Framework_MockObject_MockObject
10 10
      */
11 11
     public function getUnitMock($code)
12 12
     {
Please login to merge, or discard this patch.