Completed
Push — master ( a8be40...be07c6 )
by P.R.
03:00
created
src/MySql/Table/Table.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -268,7 +268,7 @@
 block discarded – undo
268 268
   /**
269 269
    * Selects and returns the metadata of the columns of this table from information_schema.
270 270
    *
271
-   * @return array[]
271
+   * @return \array[]
272 272
    */
273 273
   private function getColumnsFromInformationSchema()
274 274
   {
Please login to merge, or discard this patch.
src/Command/DiffCommand.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
    *
54 54
    * @param array[] $columns The metadata of the columns of a table.
55 55
    *
56
-   * @return array[]
56
+   * @return \array[]
57 57
    */
58 58
   private static function removeMatchingColumns($columns)
59 59
   {
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
   /**
143 143
    * Add not null to audit columns if it not nullable.
144 144
    *
145
-   * @param array $theColumns Audit columns.
145
+   * @param \array[] $theColumns Audit columns.
146 146
    *
147 147
    * @return array
148 148
    */
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
    * @param Columns $dataColumns  The table columns from data schema.
174 174
    * @param Columns $auditColumns The table columns from audit schema.
175 175
    *
176
-   * @return \array[]
176
+   * @return ColumnTypesExtended
177 177
    */
178 178
   private function createDiffArray($dataColumns, $auditColumns)
179 179
   {
Please login to merge, or discard this patch.