Passed
Pull Request — main (#36)
by
unknown
04:47
created
src/Models/Admin/Counter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,11 +18,11 @@
 block discarded – undo
18 18
     {
19 19
         parent::boot();
20 20
 
21
-        static::saving(function () {
21
+        static::saving(function() {
22 22
             self::cacheKey();
23 23
         });
24 24
 
25
-        static::deleting(function () {
25
+        static::deleting(function() {
26 26
             self::cacheKey();
27 27
         });
28 28
     }
Please login to merge, or discard this patch.
src/Repositories/PageRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     public function indexPage()
14 14
     {
15 15
         $pages = config('adminetic.caching', true)
16
-            ? (Cache::has('pages') ? Cache::get('pages') : Cache::rememberForever('pages', function () {
16
+            ? (Cache::has('pages') ? Cache::get('pages') : Cache::rememberForever('pages', function() {
17 17
                 return Page::orderBy('position')->get();
18 18
             }))
19 19
             : Page::orderBy('position')->get();
Please login to merge, or discard this patch.
src/Repositories/ServiceRepository.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 indexService()
15 15
     {
16 16
         $services = config('adminetic.caching', true)
17
-            ? (Cache::has('services') ? Cache::get('services') : Cache::rememberForever('services', function () {
17
+            ? (Cache::has('services') ? Cache::get('services') : Cache::rememberForever('services', function() {
18 18
                 return Service::orderBy('position')->get();
19 19
             }))
20 20
             : Service::orderBy('position')->get();
Please login to merge, or discard this patch.
src/Repositories/FacilityRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     public function indexFacility()
14 14
     {
15 15
         $facilities = config('adminetic.caching', true)
16
-            ? (Cache::has('facilities') ? Cache::get('facilities') : Cache::rememberForever('facilities', function () {
16
+            ? (Cache::has('facilities') ? Cache::get('facilities') : Cache::rememberForever('facilities', function() {
17 17
                 return Facility::orderBy('position')->get();
18 18
             }))
19 19
             : Facility::orderBy('position')->get();
Please login to merge, or discard this patch.
src/Repositories/TeamRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     public function indexTeam()
14 14
     {
15 15
         $teams = config('adminetic.caching', true)
16
-            ? (Cache::has('teams') ? Cache::get('teams') : Cache::rememberForever('teams', function () {
16
+            ? (Cache::has('teams') ? Cache::get('teams') : Cache::rememberForever('teams', function() {
17 17
                 return Team::orderBy('position')->get();
18 18
             }))
19 19
             : Team::orderBy('position')->get();
Please login to merge, or discard this patch.
src/Repositories/PackageRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     public function indexPackage()
14 14
     {
15 15
         $packages = config('adminetic.caching', true)
16
-            ? (Cache::has('packages') ? Cache::get('packages') : Cache::rememberForever('packages', function () {
16
+            ? (Cache::has('packages') ? Cache::get('packages') : Cache::rememberForever('packages', function() {
17 17
                 return Package::orderBy('position')->get();
18 18
             }))
19 19
             : Package::orderBy('position')->get();
Please login to merge, or discard this patch.
src/Repositories/TestimonialRepository.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 indexTestimonial()
15 15
     {
16 16
         $testimonials = config('adminetic.caching', true)
17
-            ? (Cache::has('testimonials') ? Cache::get('testimonials') : Cache::rememberForever('testimonials', function () {
17
+            ? (Cache::has('testimonials') ? Cache::get('testimonials') : Cache::rememberForever('testimonials', function() {
18 18
                 return Testimonial::orderBy('position')->get();
19 19
             }))
20 20
             : Testimonial::orderBy('position')->get();
Please login to merge, or discard this patch.
src/Provider/WebsiteServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
      */
195 195
     protected function registerResource()
196 196
     {
197
-        if (! config('website.publish_migrations', true)) {
197
+        if (!config('website.publish_migrations', true)) {
198 198
             $this->loadMigrationsFrom(__DIR__.'/../../database/migrations'); // Loading Migration Files
199 199
         }
200 200
         $this->loadViewsFrom(__DIR__.'/../../resources/views', 'website'); // Loading Views Files
@@ -223,12 +223,12 @@  discard block
 block discarded – undo
223 223
      */
224 224
     protected function registerRoutes()
225 225
     {
226
-        Route::group($this->routeConfiguration(), function () {
226
+        Route::group($this->routeConfiguration(), function() {
227 227
             $this->loadRoutesFrom(__DIR__.'/../../routes/web.php');
228 228
         });
229 229
 
230 230
         if (config('website.website_api_end_points', true)) {
231
-            Route::group($this->apiRouteConfiguration(), function () {
231
+            Route::group($this->apiRouteConfiguration(), function() {
232 232
                 $this->loadRoutesFrom(__DIR__.'/../../routes/api.php');
233 233
             });
234 234
         }
Please login to merge, or discard this patch.
database/migrations/2023_05_15_081759_create_taggables_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up(): void
13 13
     {
14
-        Schema::create('taggables', function (Blueprint $table) {
14
+        Schema::create('taggables', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->unsignedBigInteger('tag_id');
17 17
             $table->unsignedBigInteger('taggable_id');
Please login to merge, or discard this patch.