Passed
Push — main ( 106d28...df360d )
by PRATIK
13:25
created
src/Provider/WebsiteServiceProvider.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -120,15 +120,15 @@  discard block
 block discarded – undo
120 120
     {
121 121
         // Publish Config File
122 122
         $this->publishes([
123
-            __DIR__ . '/../../config/website.php' => config_path('website.php'),
123
+            __DIR__.'/../../config/website.php' => config_path('website.php'),
124 124
         ], 'website-config');
125 125
         // Publish View Files
126 126
         $this->publishes([
127
-            __DIR__ . '/../../resources/views' => resource_path('views/vendor/adminetic/plugin/website'),
127
+            __DIR__.'/../../resources/views' => resource_path('views/vendor/adminetic/plugin/website'),
128 128
         ], 'website-views');
129 129
         // Publish Migration Files
130 130
         $this->publishes([
131
-            __DIR__ . '/../../database/migrations' => database_path('migrations'),
131
+            __DIR__.'/../../database/migrations' => database_path('migrations'),
132 132
         ], 'website-migrations');
133 133
     }
134 134
 
@@ -139,8 +139,8 @@  discard block
 block discarded – undo
139 139
      */
140 140
     protected function registerResource()
141 141
     {
142
-        $this->loadMigrationsFrom(__DIR__ . '/../../database/migrations'); // Loading Migration Files
143
-        $this->loadViewsFrom(__DIR__ . '/../../resources/views', 'website'); // Loading Views Files
142
+        $this->loadMigrationsFrom(__DIR__.'/../../database/migrations'); // Loading Migration Files
143
+        $this->loadViewsFrom(__DIR__.'/../../resources/views', 'website'); // Loading Views Files
144 144
         $this->registerRoutes();
145 145
     }
146 146
 
@@ -163,8 +163,8 @@  discard block
 block discarded – undo
163 163
      */
164 164
     protected function registerRoutes()
165 165
     {
166
-        Route::group($this->routeConfiguration(), function () {
167
-            $this->loadRoutesFrom(__DIR__ . '/../../routes/web.php');
166
+        Route::group($this->routeConfiguration(), function() {
167
+            $this->loadRoutesFrom(__DIR__.'/../../routes/web.php');
168 168
         });
169 169
     }
170 170
 
Please login to merge, or discard this patch.