Passed
Push — main ( 8b73d6...c69a6f )
by Dimitri
03:18
created
src/Cli/Commands/Database/Migration/Status.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
         $status = [];
74 74
 
75 75
         foreach (Helper::getMigrationFiles(true) as $namespace => $files) {
76
-            if (! on_test()) {
76
+            if (!on_test()) {
77 77
                 // Rendre Tests\\Support détectable pour les tests
78 78
                 $this->ignoredNamespaces[] = 'Tests\Support'; // @codeCoverageIgnore
79 79
             }
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
             }
126 126
         }
127 127
 
128
-        if (! $status) {
128
+        if (!$status) {
129 129
             // @codeCoverageIgnoreStart
130 130
             $this->error(lang('Migrations.noneFound'))->newLine();
131 131
 
Please login to merge, or discard this patch.
src/Cli/Commands/Database/Migration/Refresh.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
             // @codeCoverageIgnoreStart
60 60
             $force = $this->option('force');
61 61
 
62
-            if (! $force && ! $this->confirm(lang('Migrations.refreshConfirm'))) {
62
+            if (!$force && !$this->confirm(lang('Migrations.refreshConfirm'))) {
63 63
                 return;
64 64
             }
65 65
 
Please login to merge, or discard this patch.
src/Cli/Commands/Database/CreateDatabase.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     {
60 60
         $name = $this->argument('name');
61 61
         if (empty($name)) {
62
-            $name = $this->prompt('Nom de la base de données', null, static function ($val) {
62
+            $name = $this->prompt('Nom de la base de données', null, static function($val) {
63 63
                 if (empty($val)) {
64 64
                     throw new InvalidArgumentException('Veuillez entrer le nom de la base de données.');
65 65
                 }
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         if ($db instanceof SQLite) {
80 80
             $ext = $this->option('ext', 'db');
81 81
 
82
-            if (! in_array($ext, ['db', 'sqlite'], true)) {
82
+            if (!in_array($ext, ['db', 'sqlite'], true)) {
83 83
                 $ext = $this->prompt('Please choose a valid file extension', ['db', 'sqlite']); // @codeCoverageIgnore
84 84
             }
85 85
 
@@ -106,14 +106,14 @@  discard block
 block discarded – undo
106 106
             $db = Database::connect($config, false);
107 107
             $db->connect();
108 108
 
109
-            if (! is_file($db->getDatabase()) && $name !== ':memory:') {
109
+            if (!is_file($db->getDatabase()) && $name !== ':memory:') {
110 110
                 // @codeCoverageIgnoreStart
111 111
                 $this->error('Echec de la création de la base de données');
112 112
 
113 113
                 return;
114 114
                 // @codeCoverageIgnoreEnd
115 115
             }
116
-        } elseif (! Database::creator($db)->createDatabase($name)) {
116
+        } elseif (!Database::creator($db)->createDatabase($name)) {
117 117
             // @codeCoverageIgnoreStart
118 118
             $this->error('Echec de la création de la base de données');
119 119
 
Please login to merge, or discard this patch.
src/Cli/Commands/Database/TableInfo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
         $limitRows       = (int) $this->option('limit-rows', 10);
107 107
         $limitFieldValue = (int) $this->option('limit-field-value', 15);
108 108
 
109
-        if (! in_array($tableName, $tables, true)) {
109
+        if (!in_array($tableName, $tables, true)) {
110 110
             $tabs   = $tables;
111 111
             $tables = [];
112 112
 
Please login to merge, or discard this patch.
src/Cli/Commands/Generators/Views/migration.tpl.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 namespace {namespace};
4 4
 
5 5
 use BlitzPHP\Database\Migration\Migration;
6
-<?php if (! empty($table) && ! empty($action)): ?>
6
+<?php if (!empty($table) && !empty($action)): ?>
7 7
 use BlitzPHP\Database\Migration\Structure;
8 8
 <?php endif; ?>
9 9
 
Please login to merge, or discard this patch.
Braces   +15 added lines, -6 removed lines patch added patch discarded remove patch
@@ -17,7 +17,8 @@  discard block
 block discarded – undo
17 17
     {
18 18
 <?php if (empty($table) || empty($action)): ?>
19 19
         //
20
-<?php else: ?>
20
+<?php else {
21
+    : ?>
21 22
         $this-><?= $action ?>('<?= $table ?>', function(Structure $table) {
22 23
 <?php if ($session): ?>
23 24
             $table->string('id', 128);
@@ -28,12 +29,17 @@  discard block
 block discarded – undo
28 29
             $table->primary(['id', 'ip_address']);
29 30
 <?php else: ?>
30 31
             $table->primary('id');
31
-<?php endif; ?>
32
+<?php endif;
33
+}
34
+?>
32 35
             $table->index('timestamp');
33
-<?php else: ?>
36
+<?php else {
37
+    : ?>
34 38
             $table->id();
35 39
             $table->timestamps();
36
-<?php endif; ?>
40
+<?php endif;
41
+}
42
+?>
37 43
 
38 44
             return $table;
39 45
         });
@@ -46,10 +52,13 @@  discard block
 block discarded – undo
46 52
         //
47 53
 <?php elseif ($action === 'create') : ?>
48 54
         $this->dropIfExists('<?= $table ?>');
49
-<?php else: ?>
55
+<?php else {
56
+    : ?>
50 57
         $this->modify('<?= $table ?>', function(Structure $table) {
51 58
             //
52 59
         });
53
-<?php endif; ?>
60
+<?php endif;
61
+}
62
+?>
54 63
     }
55 64
 }
Please login to merge, or discard this patch.
src/Cli/Commands/Generators/Migration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
             throw new InvalidArgumentException('Impossible d\'utiliser "create" et "modify" au même moment pour la génération des migrations.');
99 99
         }
100 100
 
101
-        if (! $create && ! $modify) {
101
+        if (!$create && !$modify) {
102 102
             $data['action'] = null;
103 103
         } else {
104 104
             $data['action'] = $create ? 'create' : 'modify';
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
             }
118 118
         }
119 119
 
120
-        if (! is_string($table) || $table === '') {
120
+        if (!is_string($table) || $table === '') {
121 121
             if ($data['session']) {
122 122
                 $table = 'blitz_sessions';
123 123
             } elseif (is_string($create)) {
Please login to merge, or discard this patch.
src/Cli/Commands/Encryption/GenerateKey.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
         if (in_array($prefix, [null, true], true)) {
60 60
             $prefix = 'hex2bin';
61
-        } elseif (! in_array($prefix, ['hex2bin', 'base64'], true)) {
61
+        } elseif (!in_array($prefix, ['hex2bin', 'base64'], true)) {
62 62
             $prefix = $this->choice('Veuillez utiliser un prefixe validee.', ['hex2bin', 'base64']); // @codeCoverageIgnore
63 63
         }
64 64
 
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
             return;
79 79
         }
80 80
 
81
-        if (! $this->setNewEncryptionKey($encodedKey)) {
81
+        if (!$this->setNewEncryptionKey($encodedKey)) {
82 82
             $this->writer->error('Erreur dans la configuration d\'une nouvelle cle d\'encryption dans le fichier `.env`.', true);
83 83
 
84 84
             return;
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     {
109 109
         $currentKey = env('encryption.key', '');
110 110
 
111
-        if ($currentKey !== '' && ! $this->confirmOverwrite()) {
111
+        if ($currentKey !== '' && !$this->confirmOverwrite()) {
112 112
             // Pas testable car require une entree au clavier
113 113
             return false; // @codeCoverageIgnore
114 114
         }
@@ -132,8 +132,8 @@  discard block
 block discarded – undo
132 132
         $baseEnv = ROOTPATH . '.env.example';
133 133
         $envFile = ROOTPATH . '.env';
134 134
 
135
-        if (! is_file($envFile)) {
136
-            if (! is_file($baseEnv)) {
135
+        if (!is_file($envFile)) {
136
+            if (!is_file($baseEnv)) {
137 137
                 $this->writer->warn('Both default shipped `.env.example` file and custom `.env` are missing.');
138 138
                 $this->write('Here\'s your new key instead: ' . $this->writer->warn($key), true);
139 139
 
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
             $dotenv->update(['encryption.key' => $key], false);
156 156
         }
157 157
 
158
-        if (! $append) {
158
+        if (!$append) {
159 159
             return false;
160 160
         }
161 161
 
Please login to merge, or discard this patch.
src/Cli/Console/Console.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
         foreach ($files as $file) {
180 180
             $className = $locator->getClassname($file);
181 181
 
182
-            if ($className === '' || ! class_exists($className)) {
182
+            if ($className === '' || !class_exists($className)) {
183 183
                 continue;
184 184
             }
185 185
 
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
         $class  = new ReflectionClass($className);
206 206
         $logger = $logger ?: Services::logger();
207 207
 
208
-        if (! $class->isInstantiable() || ! $class->isSubclassOf(Command::class)) {
208
+        if (!$class->isInstantiable() || !$class->isSubclassOf(Command::class)) {
209 209
             throw CLIException::invalidCommand($className);
210 210
         }
211 211
 
@@ -232,13 +232,13 @@  discard block
 block discarded – undo
232 232
             $value = (array) $value;
233 233
 
234 234
             $description = $value[0];
235
-            if (! is_string($description)) {
235
+            if (!is_string($description)) {
236 236
                 continue;
237 237
             }
238 238
 
239 239
             $default = $value[1] ?? null;
240 240
             $filter  = $value[2] ?? null;
241
-            if ($filter !== null && ! is_callable($filter)) {
241
+            if ($filter !== null && !is_callable($filter)) {
242 242
                 $filter = null;
243 243
             }
244 244
 
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
             $value = (array) $value;
251 251
 
252 252
             $description = $value[0];
253
-            if (! is_string($description)) {
253
+            if (!is_string($description)) {
254 254
                 continue;
255 255
             }
256 256
 
@@ -260,15 +260,15 @@  discard block
 block discarded – undo
260 260
         }
261 261
 
262 262
         $console = $this;
263
-        $action  = function (?array $arguments = [], ?array $options = [], ?bool $suppress = null) use ($instance, $command, $console) {
263
+        $action  = function(?array $arguments = [], ?array $options = [], ?bool $suppress = null) use ($instance, $command, $console) {
264 264
             foreach ($instance->required as $package) {
265 265
                 $package = explode(':', $package);
266 266
                 $version = $package[1] ?? null;
267 267
                 $package = $package[0];
268 268
 
269
-                if (! InstalledVersions::isInstalled($package)) {
269
+                if (!InstalledVersions::isInstalled($package)) {
270 270
                     $console->io()->info('Cette commande nécessite le package "' . $package . '" mais vous ne l\'avez pas', true);
271
-                    if (! $console->io()->confirm('Voulez-vous l\'installer maintenant ?')) {
271
+                    if (!$console->io()->confirm('Voulez-vous l\'installer maintenant ?')) {
272 272
                         return;
273 273
                     }
274 274
 
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
             }
285 285
 
286 286
             $suppress = $suppress ?: $console->suppress;
287
-            if (! $suppress) {
287
+            if (!$suppress) {
288 288
                 $console->start($instance->service);
289 289
             }
290 290
 
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
 
300 300
             $result = $instance->setOptions($options)->setArguments($arguments)->execute($parameters);
301 301
 
302
-            if (! $suppress) {
302
+            if (!$suppress) {
303 303
                 $console->end();
304 304
             }
305 305
 
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
 
315 315
     private function registerException(Logger $logger)
316 316
     {
317
-        $this->onException(function (Throwable $e, int $exitCode) use ($logger) {
317
+        $this->onException(function(Throwable $e, int $exitCode) use ($logger) {
318 318
             $logger->error((string) $e, ['exitCode' => $exitCode, 'klinge' => true]);
319 319
 
320 320
             throw new CLIException($e->getMessage(), $exitCode, $e);
Please login to merge, or discard this patch.
src/Initializer/bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 // Se rassurer que le dossier courant pointe sur le dossier du front controller
19 19
 chdir(WEBROOT);
20 20
 
21
-return function (array $paths, string $paths_config_file, bool $is_cli) {
21
+return function(array $paths, string $paths_config_file, bool $is_cli) {
22 22
     // Le chemin d'accès vers le dossier de l'application
23 23
     if (is_dir($paths['app'])) {
24 24
         if (($_temp = realpath($paths['app'])) !== false) {
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      */
94 94
     require_once __DIR__ . DS . 'kint.php';
95 95
 
96
-    if (! $is_cli) {
96
+    if (!$is_cli) {
97 97
         $app->run();
98 98
     }
99 99
 };
Please login to merge, or discard this patch.