FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
BookStack/bootstrap/app.php at development · BookStackApp/BookStack · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
BookStackApp
/
BookStack
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
2.4k
Star
19k
Code
Issues
0
Pull requests
1
Security and quality
8
Insights
Additional navigation options
Code
Issues
Pull requests
Security and quality
Insights
Expand file tree
Breadcrumbs
BookStack
/
bootstrap
/
app.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
55 lines (47 loc) · 1.57 KB
Breadcrumbs
BookStack
/
bootstrap
/
app.php
Copy path
File metadata and controls
55 lines (47 loc) · 1.57 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| The first thing we will do is create a new Laravel application instance
| which serves as the "glue" for all the components of Laravel, and is
| the IoC container for the system binding all of the various parts.
|
*/
$
app
=
new
\
BookStack
\
App
\
Application
(
dirname
(
__DIR__
)
);
/*
|--------------------------------------------------------------------------
| Bind Important Interfaces
|--------------------------------------------------------------------------
|
| Next, we need to bind some important interfaces into the container so
| we will be able to resolve them when needed. The kernels serve the
| incoming requests to this application from both the web and CLI.
|
*/
$
app
->
singleton
(
Illuminate
\
Contracts
\
Http
\Kernel::class,
BookStack
\
Http
\Kernel::class
);
$
app
->
singleton
(
Illuminate
\
Contracts
\
Console
\Kernel::class,
BookStack
\
Console
\Kernel::class
);
$
app
->
singleton
(
Illuminate
\
Contracts
\
Debug
\ExceptionHandler::class,
BookStack
\
Exceptions
\Handler::class
);
/*
|--------------------------------------------------------------------------
| Return The Application
|--------------------------------------------------------------------------
|
| This script returns the application instance. The instance is given to
| the calling script so we can separate the building of the instances
| from the actual running of the application and sending responses.
|
*/
return
$
app
;
Back
|
FazBrowse Home
|
New Git URL