Completed
Push — dev ( 5e6916...9dafa5 )
by James Ekow Abaka
02:05
created
src/SchemaDescription.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -549,6 +549,9 @@
 block discarded – undo
549 549
         
550 550
     }
551 551
 
552
+    /**
553
+     * @param AbstractDatabaseManipulator $manipulator
554
+     */
552 555
     public static function wrap($description, $manipulator)
553 556
     {
554 557
         return new SchemaDescription($description, $manipulator);
Please login to merge, or discard this patch.
src/commands/Migrate.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -50,6 +50,9 @@
 block discarded – undo
50 50
     private $currentPath;
51 51
 
52 52
 
53
+    /**
54
+     * @param string $filter
55
+     */
53 56
     public function setupOptions($options, &$filter)
54 57
     {
55 58
         if (isset($options['no-foreign-keys'])) {
Please login to merge, or discard this patch.
src/manipulators/Sqlite.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     /**
95 95
      * Generate the query for a foreign key constraint.
96 96
      *
97
-     * @param array<array> $constraintDetails
97
+     * @param array<array> $constraints
98 98
      * @return string
99 99
      */
100 100
     private function getFKConstraintQuery($constraints, $options)
@@ -363,6 +363,9 @@  discard block
 block discarded – undo
363 363
         $this->query("DROP VIEW `{$details['name']}`");
364 364
     }
365 365
 
366
+    /**
367
+     * @param string $direction
368
+     */
366 369
     public function convertTypes($type, $direction, $length)
367 370
     {
368 371
         $destinationType = null;
Please login to merge, or discard this patch.