First laravel commit
f4bdc2ca
dona
committed
86 changed files
Kernel.php
/app/Console/Kernel.php
/app/Console/Kernel.php
Handler.php
/app/Exceptions/Handler.php+51
/app/Exceptions/Handler.php
Add comment 1 Plus  <?php
Add comment 2 Plus  
Add comment 3 Plus  namespace App\Exceptions;
Add comment 4 Plus  
Add comment 5 Plus  use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
Add comment 6 Plus  use Throwable;
Add comment 7 Plus  
Add comment 8 Plus  class Handler extends ExceptionHandler
Add comment 9 Plus  {
Add comment 10 Plus   /**
Add comment 11 Plus   * A list of exception types with their corresponding custom log levels.
Add comment 12 Plus   *
Add comment 13 Plus   * @var array<class-string<\Throwable>, \Psr\Log\LogLevel::*>
Add comment 14 Plus   */
Add comment 15 Plus   protected $levels = [
Add comment 16 Plus   //
Add comment 17 Plus   ];
Add comment 18 Plus  
Add comment 19 Plus   /**
Add comment 20 Plus   * A list of the exception types that are not reported.
Add comment 21 Plus   *
Add comment 22 Plus   * @var array<int, class-string<\Throwable>>
Add comment 23 Plus   */
Add comment 24 Plus   protected $dontReport = [
Add comment 25 Plus   //
Add comment 26 Plus   ];
Add comment 27 Plus  
Add comment 28 Plus   /**
Add comment 29 Plus   * A list of the inputs that are never flashed to the session on validation exceptions.
Add comment 30 Plus   *
Add comment 31 Plus   * @var array<int, string>
Add comment 32 Plus   */
Add comment 33 Plus   protected $dontFlash = [
Add comment 34 Plus   'current_password',
Add comment 35 Plus   'password',
Add comment 36 Plus   'password_confirmation',
Add comment 37 Plus   ];
Add comment 38 Plus  
Add comment 39 Plus   /**
Add comment 40 Plus   * Register the exception handling callbacks for the application.
Add comment 41 Plus   *
Add comment 42 Plus   * @return void
Add comment 43 Plus   */
Add comment 44 Plus   public function register()
Add comment 45 Plus   {
Add comment 46 Plus   $this->reportable(function (Throwable $e) {
Add comment 47 Plus   //
Add comment 48 Plus   });
Add comment 49 Plus   }
Add comment 50 Plus  }
Add comment 51 Plus  
Controller.php
/app/Http/Controllers/Controller.php
/app/Http/Controllers/Controller.php
Authenticate.php
/app/Http/Middleware/Authenticate.php
/app/Http/Middleware/Authenticate.php
EncryptCookies.php
/app/Http/Middleware/EncryptCookies.php
/app/Http/Middleware/EncryptCookies.php
PreventRequestsDuringMaintenance.php
/app/Http/Middleware/PreventRequestsDuringMaintenance.php
/app/Http/Middleware/PreventRequestsDuringMaintenance.php
RedirectIfAuthenticated.php
/app/Http/Middleware/RedirectIfAuthenticated.php
/app/Http/Middleware/RedirectIfAuthenticated.php
TrimStrings.php
/app/Http/Middleware/TrimStrings.php
/app/Http/Middleware/TrimStrings.php
TrustHosts.php
/app/Http/Middleware/TrustHosts.php
/app/Http/Middleware/TrustHosts.php
TrustProxies.php
/app/Http/Middleware/TrustProxies.php
/app/Http/Middleware/TrustProxies.php
ValidateSignature.php
/app/Http/Middleware/ValidateSignature.php
/app/Http/Middleware/ValidateSignature.php
VerifyCsrfToken.php
/app/Http/Middleware/VerifyCsrfToken.php
/app/Http/Middleware/VerifyCsrfToken.php
Kernel.php
/app/Http/Kernel.php
/app/Http/Kernel.php
User.php
/app/Models/User.php
/app/Models/User.php
AppServiceProvider.php
/app/Providers/AppServiceProvider.php
/app/Providers/AppServiceProvider.php
AuthServiceProvider.php
/app/Providers/AuthServiceProvider.php
/app/Providers/AuthServiceProvider.php
BroadcastServiceProvider.php
/app/Providers/BroadcastServiceProvider.php
/app/Providers/BroadcastServiceProvider.php
EventServiceProvider.php
/app/Providers/EventServiceProvider.php
/app/Providers/EventServiceProvider.php
RouteServiceProvider.php
/app/Providers/RouteServiceProvider.php
/app/Providers/RouteServiceProvider.php
.gitignore
/bootstrap/cache/.gitignore
/bootstrap/cache/.gitignore
app.php
/bootstrap/app.php
/bootstrap/app.php
app.php
/config/app.php
/config/app.php
auth.php
/config/auth.php
/config/auth.php
broadcasting.php
/config/broadcasting.php
/config/broadcasting.php
cache.php
/config/cache.php
/config/cache.php
cors.php
/config/cors.php
/config/cors.php
database.php
/config/database.php
/config/database.php
filesystems.php
/config/filesystems.php
/config/filesystems.php
hashing.php
/config/hashing.php
/config/hashing.php
logging.php
/config/logging.php
/config/logging.php
mail.php
/config/mail.php
/config/mail.php
queue.php
/config/queue.php
/config/queue.php
sanctum.php
/config/sanctum.php
/config/sanctum.php
services.php
/config/services.php
/config/services.php
session.php
/config/session.php
/config/session.php
view.php
/config/view.php
/config/view.php
UserFactory.php
/database/factories/UserFactory.php
/database/factories/UserFactory.php
2014_10_12_000000_create_users_table.php
/database/migrations/2014_10_12_000000_create_users_table.php
/database/migrations/2014_10_12_000000_create_users_table.php
2014_10_12_100000_create_password_resets_table.php
/database/migrations/2014_10_12_100000_create_password_resets_table.php
/database/migrations/2014_10_12_100000_create_password_resets_table.php
2019_08_19_000000_create_failed_jobs_table.php
/database/migrations/2019_08_19_000000_create_failed_jobs_table.php
/database/migrations/2019_08_19_000000_create_failed_jobs_table.php
2019_12_14_000001_create_personal_access_tokens_table.php
/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php
/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php
DatabaseSeeder.php
/database/seeders/DatabaseSeeder.php
/database/seeders/DatabaseSeeder.php
.gitignore
/database/.gitignore
/database/.gitignore
auth.php
/lang/en/auth.php
/lang/en/auth.php
pagination.php
/lang/en/pagination.php
/lang/en/pagination.php
passwords.php
/lang/en/passwords.php
/lang/en/passwords.php
validation.php
/lang/en/validation.php
/lang/en/validation.php
.htaccess
/public/.htaccess
/public/.htaccess
favicon.ico
/public/favicon.ico
/public/favicon.ico
index.php
/public/index.php
/public/index.php
robots.txt
/public/robots.txt
/public/robots.txt
app.css
/resources/css/app.css
/resources/css/app.css
app.js
/resources/js/app.js
/resources/js/app.js
bootstrap.js
/resources/js/bootstrap.js
/resources/js/bootstrap.js
welcome.blade.php
/resources/views/welcome.blade.php
/resources/views/welcome.blade.php
api.php
/routes/api.php
/routes/api.php
channels.php
/routes/channels.php
/routes/channels.php
console.php
/routes/console.php
/routes/console.php
web.php
/routes/web.php
/routes/web.php
.gitignore
/storage/app/public/.gitignore
/storage/app/public/.gitignore
.gitignore
/storage/app/.gitignore
/storage/app/.gitignore
.gitignore
/storage/framework/cache/data/.gitignore
/storage/framework/cache/data/.gitignore
.gitignore
/storage/framework/cache/.gitignore
/storage/framework/cache/.gitignore
.gitignore
/storage/framework/sessions/.gitignore
/storage/framework/sessions/.gitignore
.gitignore
/storage/framework/testing/.gitignore
/storage/framework/testing/.gitignore
.gitignore
/storage/framework/views/.gitignore
/storage/framework/views/.gitignore
.gitignore
/storage/framework/.gitignore
/storage/framework/.gitignore
.gitignore
/storage/logs/.gitignore
/storage/logs/.gitignore
ExampleTest.php
/tests/Feature/ExampleTest.php
/tests/Feature/ExampleTest.php
ExampleTest.php
/tests/Unit/ExampleTest.php
/tests/Unit/ExampleTest.php
CreatesApplication.php
/tests/CreatesApplication.php
/tests/CreatesApplication.php
TestCase.php
/tests/TestCase.php
/tests/TestCase.php
.editorconfig
/.editorconfig
/.editorconfig
.env
/.env
/.env
.env.example
/.env.example
/.env.example
.gitattributes
/.gitattributes
/.gitattributes
.gitignore
/.gitignore
/.gitignore
artisan
/artisan
/artisan
composer.json
/composer.json
/composer.json
composer.lock
/composer.lock
/composer.lock
docker-compose.yml
/docker-compose.yml
/docker-compose.yml
package-lock.json
/package-lock.json
/package-lock.json
package.json
/package.json
/package.json
phpunit.xml
/phpunit.xml
/phpunit.xml
README.md
/README.md
/README.md
vite.config.js
/vite.config.js
/vite.config.js