Passed
Push — main ( 0b16b2...d1f2d0 )
by PRATIK
17:54 queued 13:22
created
src/Repositories/FeatureRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     public function indexFeature()
15 15
     {
16 16
         $features = config('adminetic.caching', true)
17
-            ? (Cache::has('features') ? Cache::get('features') : Cache::rememberForever('features', function () {
17
+            ? (Cache::has('features') ? Cache::get('features') : Cache::rememberForever('features', function() {
18 18
                 return Feature::latest()->get();
19 19
             }))
20 20
             : Feature::latest()->get();
Please login to merge, or discard this patch.
src/Provider/WebsiteServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
      */
189 189
     protected function registerResource()
190 190
     {
191
-        if (! config('website.publish_migrations', true)) {
191
+        if (!config('website.publish_migrations', true)) {
192 192
             $this->loadMigrationsFrom(__DIR__.'/../../database/migrations'); // Loading Migration Files
193 193
         }
194 194
         $this->loadViewsFrom(__DIR__.'/../../resources/views', 'website'); // Loading Views Files
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
      */
218 218
     protected function registerRoutes()
219 219
     {
220
-        Route::group($this->routeConfiguration(), function () {
220
+        Route::group($this->routeConfiguration(), function() {
221 221
             $this->loadRoutesFrom(__DIR__.'/../../routes/web.php');
222 222
         });
223 223
     }
Please login to merge, or discard this patch.