Failed Conditions
Pull Request — master (#589)
by
unknown
04:58
created
lib/Doctrine/DBAL/Migrations/Finder/AbstractFinder.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     protected function getRealPath($directory)
35 35
     {
36 36
         $dir = realpath($directory);
37
-        if (false === $dir || ! is_dir($dir)) {
37
+        if (false === $dir || !is_dir($dir)) {
38 38
             throw new \InvalidArgumentException(sprintf(
39 39
                 'Cannot load migrations from "%s" because it is not a valid directory',
40 40
                 $directory
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
             $version   = (string) substr($className, 7);
63 63
             if ($version === '0') {
64 64
                 throw new \InvalidArgumentException(sprintf(
65
-                    'Cannot load a migrations with the name "%s" because it is a reserved number by doctrine migrations' . PHP_EOL .
65
+                    'Cannot load a migrations with the name "%s" because it is a reserved number by doctrine migrations'.PHP_EOL.
66 66
                     'It\'s used to revert all migrations including the first one.',
67 67
                     $version
68 68
                 ));
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      */
81 81
     protected function getFileSortCallback()
82 82
     {
83
-        return function ($a, $b) {
83
+        return function($a, $b) {
84 84
             return (basename($a) < basename($b)) ? -1 : 1;
85 85
         };
86 86
     }
Please login to merge, or discard this patch.
Configuration/Connection/Loader/ArrayConnectionConfigurationLoader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,12 +43,12 @@
 block discarded – undo
43 43
             return null;
44 44
         }
45 45
 
46
-        if ( ! file_exists($this->filename)) {
46
+        if (!file_exists($this->filename)) {
47 47
             return null;
48 48
         }
49 49
 
50 50
         $params = include $this->filename;
51
-        if ( ! is_array($params)) {
51
+        if (!is_array($params)) {
52 52
             throw new \InvalidArgumentException('The connection file has to return an array with database configuration parameters.');
53 53
         }
54 54
 
Please login to merge, or discard this patch.
lib/Doctrine/DBAL/Migrations/Configuration/Configuration.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -196,10 +196,10 @@  discard block
 block discarded – undo
196 196
      */
197 197
     public function validate()
198 198
     {
199
-        if ( ! $this->migrationsNamespace) {
199
+        if (!$this->migrationsNamespace) {
200 200
             throw MigrationException::migrationsNamespaceRequired();
201 201
         }
202
-        if ( ! $this->migrationsDirectory) {
202
+        if (!$this->migrationsDirectory) {
203 203
             throw MigrationException::migrationsDirectoryRequired();
204 204
         }
205 205
     }
@@ -374,7 +374,7 @@  discard block
 block discarded – undo
374 374
     public function setMigrationsFinder(MigrationFinderInterface $finder)
375 375
     {
376 376
         if (($this->migrationsAreOrganizedByYear || $this->migrationsAreOrganizedByYearAndMonth)
377
-            && ! ($finder instanceof MigrationDeepFinderInterface)) {
377
+            && !($finder instanceof MigrationDeepFinderInterface)) {
378 378
             throw MigrationException::configurationIncompatibleWithFinder(
379 379
                 'organize-migrations',
380 380
                 $finder
@@ -471,7 +471,7 @@  discard block
 block discarded – undo
471 471
             $this->registerMigrationsFromDirectory($this->getMigrationsDirectory());
472 472
         }
473 473
 
474
-        if ( ! isset($this->migrations[$version])) {
474
+        if (!isset($this->migrations[$version])) {
475 475
             throw MigrationException::unknownMigrationVersion($version);
476 476
         }
477 477
 
@@ -507,7 +507,7 @@  discard block
 block discarded – undo
507 507
         $this->createMigrationTable();
508 508
 
509 509
         $version = $this->connection->fetchColumn(
510
-            "SELECT " . $this->migrationsColumnName . " FROM " . $this->migrationsTableName . " WHERE " . $this->migrationsColumnName . " = ?",
510
+            "SELECT ".$this->migrationsColumnName." FROM ".$this->migrationsTableName." WHERE ".$this->migrationsColumnName." = ?",
511 511
             [$version->getVersion()]
512 512
         );
513 513
 
@@ -524,7 +524,7 @@  discard block
 block discarded – undo
524 524
         $this->connect();
525 525
         $this->createMigrationTable();
526 526
 
527
-        $ret = $this->connection->fetchAll("SELECT " . $this->migrationsColumnName . " FROM " . $this->migrationsTableName);
527
+        $ret = $this->connection->fetchAll("SELECT ".$this->migrationsColumnName." FROM ".$this->migrationsTableName);
528 528
 
529 529
         return array_map('current', $ret);
530 530
     }
@@ -564,12 +564,12 @@  discard block
 block discarded – undo
564 564
         }
565 565
 
566 566
         $where = null;
567
-        if ( ! empty($this->migrations)) {
567
+        if (!empty($this->migrations)) {
568 568
             $migratedVersions = [];
569 569
             foreach ($this->migrations as $migration) {
570 570
                 $migratedVersions[] = sprintf("'%s'", $migration->getVersion());
571 571
             }
572
-            $where = " WHERE " . $this->migrationsColumnName . " IN (" . implode(', ', $migratedVersions) . ")";
572
+            $where = " WHERE ".$this->migrationsColumnName." IN (".implode(', ', $migratedVersions).")";
573 573
         }
574 574
 
575 575
         $sql = sprintf(
@@ -624,7 +624,7 @@  discard block
 block discarded – undo
624 624
         $versions = array_map('strval', array_keys($this->migrations));
625 625
         array_unshift($versions, '0');
626 626
         $offset = array_search((string) $version, $versions);
627
-        if ($offset === false || ! isset($versions[$offset + $delta])) {
627
+        if ($offset === false || !isset($versions[$offset + $delta])) {
628 628
             // Unknown version or delta out of bounds.
629 629
             return null;
630 630
         }
@@ -705,7 +705,7 @@  discard block
 block discarded – undo
705 705
         $this->connect();
706 706
         $this->createMigrationTable();
707 707
 
708
-        $result = $this->connection->fetchColumn("SELECT COUNT(" . $this->migrationsColumnName . ") FROM " . $this->migrationsTableName);
708
+        $result = $this->connection->fetchColumn("SELECT COUNT(".$this->migrationsColumnName.") FROM ".$this->migrationsTableName);
709 709
 
710 710
         return $result !== false ? $result : 0;
711 711
     }
@@ -891,7 +891,7 @@  discard block
 block discarded – undo
891 891
      */
892 892
     private function ensureOrganizeMigrationsIsCompatibleWithFinder()
893 893
     {
894
-        if ( ! ($this->migrationFinder instanceof MigrationDeepFinderInterface)) {
894
+        if (!($this->migrationFinder instanceof MigrationDeepFinderInterface)) {
895 895
             throw MigrationException::configurationIncompatibleWithFinder(
896 896
                 'organize-migrations',
897 897
                 $this->migrationFinder
@@ -913,7 +913,7 @@  discard block
 block discarded – undo
913 913
     private function shouldExecuteMigration($direction, Version $version, $to, $migrated)
914 914
     {
915 915
         if ($direction === Version::DIRECTION_DOWN) {
916
-            if ( ! in_array($version->getVersion(), $migrated)) {
916
+            if (!in_array($version->getVersion(), $migrated)) {
917 917
                 return false;
918 918
             }
919 919
 
@@ -934,7 +934,7 @@  discard block
 block discarded – undo
934 934
      */
935 935
     private function ensureMigrationClassExists($class)
936 936
     {
937
-        if ( ! class_exists($class)) {
937
+        if (!class_exists($class)) {
938 938
             throw MigrationException::migrationClassNotFound($class, $this->getMigrationsNamespace());
939 939
         }
940 940
     }
Please login to merge, or discard this patch.
lib/Doctrine/DBAL/Migrations/Configuration/XmlConfiguration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         libxml_use_internal_errors(true);
40 40
         $xml = new \DOMDocument();
41 41
         $xml->load($file);
42
-        if ( ! $xml->schemaValidate(__DIR__ . DIRECTORY_SEPARATOR . "XML" . DIRECTORY_SEPARATOR . "configuration.xsd")) {
42
+        if (!$xml->schemaValidate(__DIR__.DIRECTORY_SEPARATOR."XML".DIRECTORY_SEPARATOR."configuration.xsd")) {
43 43
             libxml_clear_errors();
44 44
             throw MigrationException::configurationNotValid('XML configuration did not pass the validation test.');
45 45
         }
Please login to merge, or discard this patch.
lib/Doctrine/DBAL/Migrations/Event/Listeners/AutoCommitListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     public function onMigrationsMigrated(MigrationsEventArgs $args)
35 35
     {
36 36
         $conn = $args->getConnection();
37
-        if ( ! $args->isDryRun() && ! $conn->isAutoCommit()) {
37
+        if (!$args->isDryRun() && !$conn->isAutoCommit()) {
38 38
             $conn->commit();
39 39
         }
40 40
     }
Please login to merge, or discard this patch.
lib/Doctrine/DBAL/Migrations/Migration.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
          * migrations.
141 141
          */
142 142
         $migrations = $this->configuration->getMigrations();
143
-        if ( ! isset($migrations[$to]) && $to > 0) {
143
+        if (!isset($migrations[$to]) && $to > 0) {
144 144
             throw MigrationException::unknownMigrationVersion($to);
145 145
         }
146 146
 
@@ -155,11 +155,11 @@  discard block
 block discarded – undo
155 155
          * means we are already at the destination return an empty array()
156 156
          * to signify that there is nothing left to do.
157 157
          */
158
-        if ($from === $to && empty($migrationsToExecute) && ! empty($migrations)) {
158
+        if ($from === $to && empty($migrationsToExecute) && !empty($migrations)) {
159 159
             return $this->noMigrations();
160 160
         }
161 161
 
162
-        if ( ! $dryRun && false === $this->migrationsCanExecute($confirm)) {
162
+        if (!$dryRun && false === $this->migrationsCanExecute($confirm)) {
163 163
             return [];
164 164
         }
165 165
 
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
         /**
171 171
          * If there are no migrations to execute throw an exception.
172 172
          */
173
-        if (empty($migrationsToExecute) && ! $this->noMigrationException) {
173
+        if (empty($migrationsToExecute) && !$this->noMigrationException) {
174 174
             throw MigrationException::noMigrationsToExecute();
175 175
         } elseif (empty($migrationsToExecute)) {
176 176
             return $this->noMigrations();
Please login to merge, or discard this patch.
lib/Doctrine/DBAL/Migrations/OutputWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     public function __construct(\Closure $closure = null)
35 35
     {
36 36
         if ($closure === null) {
37
-            $closure = function ($message) {
37
+            $closure = function($message) {
38 38
             };
39 39
         }
40 40
         $this->closure = $closure;
Please login to merge, or discard this patch.
DBAL/Migrations/Tools/Console/Helper/MigrationStatusInfosHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
         }
75 75
 
76 76
         //Show normal version number
77
-        return $this->configuration->getDateTime($version) . ' (<comment>' . $version . '</comment>)';
77
+        return $this->configuration->getDateTime($version).' (<comment>'.$version.'</comment>)';
78 78
     }
79 79
 
80 80
     /**
Please login to merge, or discard this patch.
lib/Doctrine/DBAL/Migrations/QueryWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\DBAL\Migrations;
6 6
 
Please login to merge, or discard this patch.