Update translations.

This commit is contained in:
James Cole
2022-09-04 13:53:24 +02:00
parent 06b7f18d55
commit e420ead9e8
27 changed files with 517 additions and 632 deletions

View File

@@ -26,8 +26,6 @@
* @author Taylor Otwell <taylor@laravel.com>
*/
use Symfony\Component\HttpFoundation\Exception\SuspiciousOperationException;
define('LARAVEL_START', microtime(true));
/*
@@ -72,16 +70,10 @@ $app = require_once __DIR__ . '/../bootstrap/app.php';
|
*/
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
try {
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
} catch(SuspiciousOperationException $e) {
die('Cannot handle this situation.');
}
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);