Passed
Push — master ( 5ca28c...fb7a5c )
by ReliQ
05:09 queued 12s
created
src/Utility/ServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     {
44 44
         $this->app->singleton(
45 45
             ConfigProviderContract::class,
46
-            function (): ConfigProviderContract {
46
+            function(): ConfigProviderContract {
47 47
                 return new ConfigProvider(
48 48
                     new ReliqArtsConfigProvider(
49 49
                         resolve(ConfigRepository::class),
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
         $this->app->singleton(
57 57
             LoggerContract::class,
58
-            function (): LoggerContract {
58
+            function(): LoggerContract {
59 59
                 $logger = new Logger($this->getLoggerName());
60 60
                 $logFile = storage_path(sprintf('logs/%s.log', $this->getLogFilename()));
61 61
                 $logger->pushHandler(new StreamHandler($logFile, Logger::DEBUG));
Please login to merge, or discard this patch.
migrations/2019_05_19_000000_create_logistiq_tracking_updates_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function up()
35 35
     {
36
-        Schema::create($this->table, function (Blueprint $table) {
36
+        Schema::create($this->table, function(Blueprint $table) {
37 37
             $table->bigIncrements('id');
38 38
             $table->string(TrackingUpdate::COLUMN_TRACKABLE_IDENTIFIER);
39 39
             $table->string(TrackingUpdate::COLUMN_TRACKABLE_TYPE);
Please login to merge, or discard this patch.