Skip to content

Commit

Permalink
dep update
Browse files Browse the repository at this point in the history
  • Loading branch information
marchershey committed Nov 30, 2024
1 parent a410ded commit 5ceb695
Show file tree
Hide file tree
Showing 12 changed files with 1,374 additions and 1,251 deletions.
2 changes: 1 addition & 1 deletion app/app/Http/Pages/Setup/_inactive/FirstProperty.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Http\Pages\Setup;
namespace App\Http\Pages\Setup\_inactive;

use App\Models\Property;
use Livewire\Attributes\Layout;
Expand Down
2 changes: 1 addition & 1 deletion app/app/Http/Pages/Setup/_inactive/PropertyDetails.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Http\Pages\Setup;
namespace App\Http\Pages\Setup\_inactive;

use App\Models\Property;
use Livewire\Component;
Expand Down
4 changes: 2 additions & 2 deletions app/app/Http/Pages/Setup/_inactive/PropertyPhotos.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Http\Pages\Setup;
namespace App\Http\Pages\Setup\_inactive;

use App\Models\Property;
use App\Models\PropertyPhoto;
Expand Down Expand Up @@ -107,7 +107,7 @@ public function deletePhoto($key): void
*/
function updatePhotoOrder(array $data): void
{
$this->photos = array_map(fn ($item) => $this->photos[$item['value']], $data);
$this->photos = array_map(fn($item) => $this->photos[$item['value']], $data);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion app/app/Http/Pages/Setup/_inactive/SetupIndex.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Http\Pages\Setup;
namespace App\Http\Pages\Setup\_inactive;

use App\Settings\SetupSettings;
use Livewire\Attributes\Layout;
Expand Down
2 changes: 1 addition & 1 deletion app/app/Traits/_delete/HasForm.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Traits;
namespace App\Traits\_delete;

trait HasForm
{
Expand Down
6 changes: 3 additions & 3 deletions app/app/Traits/_delete/ValidateOnUpdate.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php

namespace App\Traits;
namespace App\Traits\_delete;

use Livewire\Component;

trait ValidateOnUpdate
{
/**
* Runs when a component has been updated/changed only when value is not null.
*
*
* After validation, if a property is invalid then the user updates the property,
* reset the property's validation, but do not rerun validation until the user
* resubmits the form
Expand All @@ -20,7 +20,7 @@ trait ValidateOnUpdate
function updated($property, $value): void
{
$this->resetValidation($property);
// This validates the property, ONLY if it isn't null.
// This validates the property, ONLY if it isn't null.
if ($value) {
$this->validateOnly($property);
}
Expand Down
30 changes: 15 additions & 15 deletions app/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,24 @@
"license": "MIT",
"require": {
"php": ">=8.3",
"guzzlehttp/guzzle": "7.8.1",
"laravel/framework": "v11.7.0",
"laravel/sanctum": "v4.0.2",
"laravel/tinker": "v2.9.0",
"livewire/livewire": "v3.4.12",
"spatie/laravel-settings": "3.3.2",
"guzzlehttp/guzzle": "7.9.2",
"laravel/framework": "v11.34.2",
"laravel/sanctum": "v4.0.5",
"laravel/tinker": "v2.10.0",
"livewire/livewire": "v3.5.15",
"spatie/laravel-settings": "3.4.0",
"usernotnull/tall-toasts": "v2.1.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.13",
"fakerphp/faker": "v1.23.1",
"laravel/pint": "v1.15.3",
"laravel/sail": "v1.29.1",
"laravel/telescope": "v5.0.4",
"barryvdh/laravel-debugbar": "v3.14.9",
"fakerphp/faker": "v1.24.1",
"laravel/pint": "v1.18.3",
"laravel/sail": "v1.39.1",
"laravel/telescope": "v5.2.6",
"mockery/mockery": "1.6.12",
"nunomaduro/collision": "v8.1.1",
"pestphp/pest": "^2.34",
"spatie/laravel-ignition": "2.7.0"
"nunomaduro/collision": "v8.5.0",
"pestphp/pest": "v3.5.1",
"spatie/laravel-ignition": "2.8.0"
},
"autoload": {
"files": [
Expand Down Expand Up @@ -76,4 +76,4 @@
},
"minimum-stability": "stable",
"prefer-stable": true
}
}
Loading

0 comments on commit 5ceb695

Please sign in to comment.