Passed
Push — master ( 37af5f...357935 )
by F. Javier
02:43
created
src/Utility/Utils.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -26,33 +26,33 @@
 block discarded – undo
26 26
     public static function loadEnv(string $dir): void
27 27
     {
28 28
         /** @noinspection PhpIncludeInspection */
29
-        require_once $dir . '/vendor/autoload.php';
29
+        require_once $dir.'/vendor/autoload.php';
30 30
 
31 31
         if (!class_exists(Dotenv::class)) {
32
-            fwrite(STDERR, 'ERROR: No se ha cargado la clase Dotenv' . PHP_EOL);
32
+            fwrite(STDERR, 'ERROR: No se ha cargado la clase Dotenv'.PHP_EOL);
33 33
             exit(1);
34 34
         }
35 35
 
36 36
         try {
37 37
             // Load environment variables from .env file
38
-            if (file_exists($dir . '/.env')) {
38
+            if (file_exists($dir.'/.env')) {
39 39
                 $dotenv = Dotenv::createMutable($dir, '.env');
40 40
                 $dotenv->load();
41 41
             } else {
42
-                fwrite(STDERR, 'ERROR: no existe el fichero .env' . PHP_EOL);
42
+                fwrite(STDERR, 'ERROR: no existe el fichero .env'.PHP_EOL);
43 43
                 exit(1);
44 44
             }
45 45
 
46 46
             // Overload (if they exist) with .env.docker or .env.local
47
-            if (isset($_SERVER['DOCKER']) && file_exists($dir . '/.env.docker')) {
47
+            if (isset($_SERVER['DOCKER']) && file_exists($dir.'/.env.docker')) {
48 48
                 $dotenv = Dotenv::createMutable($dir, '.env.docker');
49 49
                 $dotenv->load();
50
-            } elseif (file_exists($dir . '/.env.local')) {
50
+            } elseif (file_exists($dir.'/.env.local')) {
51 51
                 $dotenv = Dotenv::createMutable($dir, '.env.local');
52 52
                 $dotenv->load();
53 53
             }
54 54
         } catch (Throwable $e) {
55
-            fwrite(STDERR, 'EXCEPCIÓN: ' . $e->getCode() . ' - ' . $e->getMessage());
55
+            fwrite(STDERR, 'EXCEPCIÓN: '.$e->getCode().' - '.$e->getMessage());
56 56
             exit(1);
57 57
         }
58 58
     }
Please login to merge, or discard this patch.
src/Utility/DoctrineConnector.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
                 $_ENV['ENTITY_DIR']
42 42
             )
43 43
         ) {
44
-            fwrite(STDERR, 'Faltan variables de entorno por definir' . PHP_EOL);
44
+            fwrite(STDERR, 'Faltan variables de entorno por definir'.PHP_EOL);
45 45
             exit(1);
46 46
         }
47 47
 
@@ -56,14 +56,14 @@  discard block
 block discarded – undo
56 56
             'charset'   => $_ENV['DATABASE_CHARSET'] ?? 'UTF8',
57 57
         ];
58 58
 
59
-        $entityDir = dirname(__DIR__, 2) . '/' . $_ENV['ENTITY_DIR'];
59
+        $entityDir = dirname(__DIR__, 2).'/'.$_ENV['ENTITY_DIR'];
60 60
         $queryCache = new PhpFilesAdapter('doctrine_queries');
61 61
         // $metadataCache = new PhpFilesAdapter('doctrine_metadata');
62 62
         $config = Setup::createAnnotationMetadataConfiguration(
63
-            [ $entityDir ],            // Paths to mapped entities
64
-            false,                      // Developper mode
65
-            ini_get('sys_temp_dir'),    // Proxy dir
66
-            null,                       // Cache implementation
63
+            [$entityDir], // Paths to mapped entities
64
+            false, // Developper mode
65
+            ini_get('sys_temp_dir'), // Proxy dir
66
+            null, // Cache implementation
67 67
             false                       // Use Simple Annotation Reader
68 68
         );
69 69
         $config->setQueryCache($queryCache);
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
             $entityManager = EntityManager::create($dbParams, $config);
75 75
         } catch (Throwable $e) {
76 76
             $msg = sprintf('ERROR (%d): %s', $e->getCode(), $e->getMessage());
77
-            fwrite(STDERR, $msg . PHP_EOL);
77
+            fwrite(STDERR, $msg.PHP_EOL);
78 78
             exit(1);
79 79
         }
80 80
 
Please login to merge, or discard this patch.