Completed
Pull Request — master (#26)
by
unknown
02:30
created
src/Command/DiffCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
    *
123 123
    * @param array[] $columns The metadata of the columns.
124 124
    *
125
-   * @return array[]
125
+   * @return \array[]
126 126
    */
127 127
   private function addHighlighting($columns)
128 128
   {
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
   /**
254 254
    * Add not null to audit columns if it not nullable.
255 255
    *
256
-   * @param array $theColumns Audit columns.
256
+   * @param \array[] $theColumns Audit columns.
257 257
    *
258 258
    * @return array
259 259
    */
Please login to merge, or discard this patch.
src/MySql/Helper/TableHelper.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,9 +56,9 @@
 block discarded – undo
56 56
   public function appendTableOption($theOption)
57 57
   {
58 58
     $this->rows[$theOption] = ['column_name'      => $theOption,
59
-                               'data_table_type'  => $this->dataTableOptions[$theOption],
60
-                               'audit_table_type' => $this->auditTableOptions[$theOption],
61
-                               'config_type'      => null];
59
+                                'data_table_type'  => $this->dataTableOptions[$theOption],
60
+                                'audit_table_type' => $this->auditTableOptions[$theOption],
61
+                                'config_type'      => null];
62 62
   }
63 63
 
64 64
   //--------------------------------------------------------------------------------------------------------------------
Please login to merge, or discard this patch.