Issues (40)

public/index.php (1 issue)

1
<?php
2
3
use Illuminate\Contracts\Http\Kernel;
4
use Illuminate\Http\Request;
0 ignored issues
show
This use statement conflicts with another class in this namespace, Request. Consider defining an alias.

Let?s assume that you have a directory layout like this:

.
|-- OtherDir
|   |-- Bar.php
|   `-- Foo.php
`-- SomeDir
    `-- Foo.php

and let?s assume the following content of Bar.php:

// Bar.php
namespace OtherDir;

use SomeDir\Foo; // This now conflicts the class OtherDir\Foo

If both files OtherDir/Foo.php and SomeDir/Foo.php are loaded in the same runtime, you will see a PHP error such as the following:

PHP Fatal error:  Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php

However, as OtherDir/Foo.php does not necessarily have to be loaded and the error is only triggered if it is loaded before OtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias:

// Bar.php
namespace OtherDir;

use SomeDir\Foo as SomeDirFoo; // There is no conflict anymore.
Loading history...
5
6
define('LARAVEL_START', microtime(true));
7
8
/*
9
|--------------------------------------------------------------------------
10
| Check If The Application Is Under Maintenance
11
|--------------------------------------------------------------------------
12
|
13
| If the application is in maintenance / demo mode via the "down" command
14
| we will load this file so that any pre-rendered content can be shown
15
| instead of starting the framework, which could cause an exception.
16
|
17
*/
18
19
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
20
    require $maintenance;
21
}
22
23
/*
24
|--------------------------------------------------------------------------
25
| Register The Auto Loader
26
|--------------------------------------------------------------------------
27
|
28
| Composer provides a convenient, automatically generated class loader for
29
| this application. We just need to utilize it! We'll simply require it
30
| into the script here so we don't need to manually load our classes.
31
|
32
*/
33
34
require __DIR__.'/../vendor/autoload.php';
35
36
/*
37
|--------------------------------------------------------------------------
38
| Run The Application
39
|--------------------------------------------------------------------------
40
|
41
| Once we have the application, we can handle the incoming request using
42
| the application's HTTP kernel. Then, we will send the response back
43
| to this client's browser, allowing them to enjoy our application.
44
|
45
*/
46
47
$app = require_once __DIR__.'/../bootstrap/app.php';
48
49
$kernel = $app->make(Kernel::class);
50
51
$response = $kernel->handle(
52
    $request = Request::capture()
53
)->send();
54
55
$kernel->terminate($request, $response);
56