Skip to content

Commit baa827d

Browse files
author
DKravtsov
committedFeb 26, 2023
Laravel 10, updated composer dependencies.
1 parent 6eead8e commit baa827d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2622
-1028
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ reports/*
2121
npm-debug.log
2222
yarn-error.log
2323
.phpunit.result.cache
24+
.phpunit.cache
2425
###> friendsofphp/php-cs-fixer ###
2526
.php-cs-fixer.cache
2627
.php_cs

‎app/Http/Controllers/Controller.php

-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@
55
namespace App\Http\Controllers;
66

77
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
8-
use Illuminate\Foundation\Bus\DispatchesJobs;
98
use Illuminate\Foundation\Validation\ValidatesRequests;
109
use Illuminate\Routing\Controller as BaseController;
1110

1211
class Controller extends BaseController
1312
{
1413
use AuthorizesRequests;
15-
use DispatchesJobs;
1614
use ValidatesRequests;
1715
}

0 commit comments

Comments
 (0)
Failed to load comments.