Passed
Push — master ( 565b69...d4f587 )
by Andrey
78:31 queued 63:27
created
src/Support/File.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
      */
68 68
     public function directoryExists(string $path, string $locale): void
69 69
     {
70
-        if (! $path || ! $this->exists($path)) {
70
+        if ( ! $path || ! $this->exists($path)) {
71 71
             throw new SourceLocaleNotExists($locale);
72 72
         }
73 73
     }
Please login to merge, or discard this patch.
src/Support/Locale.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
 
48 48
     protected function normalizeNames(array $directories): array
49 49
     {
50
-        return array_map(function ($dir) {
50
+        return array_map(function($dir) {
51 51
             return File::name($dir);
52 52
         }, $directories);
53 53
     }
Please login to merge, or discard this patch.
src/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
     {
66 66
         $this->mergeConfigFrom(__DIR__ . '/../config/lang-publisher.php', ConfigContract::KEY);
67 67
 
68
-        $this->app->singleton(ConfigContract::class, function () {
68
+        $this->app->singleton(ConfigContract::class, function() {
69 69
             return new Config();
70 70
         });
71 71
     }
Please login to merge, or discard this patch.