Completed
Pull Request — master (#40)
by Dima
06:19
created
src/MySql/AuditDiff.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
    *
116 116
    * @param array[] $columns The metadata of the columns of a table.
117 117
    *
118
-   * @return array[]
118
+   * @return \array[]
119 119
    */
120 120
   private static function removeMatchingColumns($columns)
121 121
   {
@@ -189,9 +189,9 @@  discard block
 block discarded – undo
189 189
   /**
190 190
    * Add not null to audit columns if it not nullable.
191 191
    *
192
-   * @param array $theColumns Audit columns.
192
+   * @param \array[] $theColumns Audit columns.
193 193
    *
194
-   * @return array
194
+   * @return \array[]
195 195
    */
196 196
   private function addNotNull($theColumns)
197 197
   {
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
    * @param TableColumnsMetadata $dataColumns  The table columns from data schema.
221 221
    * @param TableColumnsMetadata $auditColumns The table columns from audit schema.
222 222
    *
223
-   * @return \array[]
223
+   * @return ColumnsExtendedContainer
224 224
    */
225 225
   private function createDiffArray($dataColumns, $auditColumns)
226 226
   {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 //----------------------------------------------------------------------------------------------------------------------
3 3
 namespace SetBased\Audit\MySql;
4 4
 
5
-use SetBased\Audit\MySql\Helper\ColumnsExtendedContainer;
6 5
 use SetBased\Audit\MySql\Helper\ColumnTypeExtended;
6
+use SetBased\Audit\MySql\Helper\ColumnsExtendedContainer;
7 7
 use SetBased\Audit\MySql\Helper\TableHelper;
8 8
 use SetBased\Audit\MySql\Metadata\TableColumnsMetadata;
9 9
 use SetBased\Stratum\MySql\StaticDataLayer;
Please login to merge, or discard this patch.