Skip to content

Commit e7478ea

Browse files
committed
Fix spacing in app/config/app.php
1 parent 961be0a commit e7478ea

File tree

1 file changed

+117
-117
lines changed

1 file changed

+117
-117
lines changed

app/config/app.php

Lines changed: 117 additions & 117 deletions
Original file line numberDiff line numberDiff line change
@@ -2,83 +2,83 @@
22

33
return array(
44

5-
/*
6-
|--------------------------------------------------------------------------
7-
| Application Debug Mode
8-
|--------------------------------------------------------------------------
9-
|
10-
| When your application is in debug mode, detailed error messages with
11-
| stack traces will be shown on every error that occurs within your
12-
| application. If disabled, a simple generic error page is shown.
13-
|
14-
*/
15-
16-
'debug' => false,
17-
18-
/*
19-
|--------------------------------------------------------------------------
20-
| Application URL
21-
|--------------------------------------------------------------------------
22-
|
23-
| This URL is used by the console to properly generate URLs when using
24-
| the Artisan command line tool. You should set this to the root of
25-
| your application so that it is used when running Artisan tasks.
26-
|
27-
*/
28-
29-
'url' => 'http://localhost',
30-
31-
/*
32-
|--------------------------------------------------------------------------
33-
| Application Timezone
34-
|--------------------------------------------------------------------------
35-
|
36-
| Here you may specify the default timezone for your application, which
37-
| will be used by the PHP date and date-time functions. We have gone
38-
| ahead and set this to a sensible default for you out of the box.
39-
|
40-
*/
41-
42-
'timezone' => 'UTC',
43-
44-
/*
45-
|--------------------------------------------------------------------------
46-
| Application Locale Configuration
47-
|--------------------------------------------------------------------------
48-
|
49-
| The application locale determines the default locale that will be used
50-
| by the translation service provider. You are free to set this value
51-
| to any of the locales which will be supported by the application.
52-
|
53-
*/
54-
55-
'locale' => 'en',
56-
57-
/*
58-
|--------------------------------------------------------------------------
59-
| Encryption Key
60-
|--------------------------------------------------------------------------
61-
|
62-
| This key is used by the Illuminate encrypter service and should be set
63-
| to a random, 32 character string, otherwise these encrypted strings
64-
| will not be safe. Please do this before deploying an application!
65-
|
66-
*/
67-
68-
'key' => 'Your App Key Here',
69-
70-
/*
71-
|--------------------------------------------------------------------------
72-
| Autoloaded Service Providers
73-
|--------------------------------------------------------------------------
74-
|
75-
| The service providers listed here will be automatically loaded on the
76-
| request to your application. Feel free to add your own services to
77-
| this array to grant expanded functionality to your applications.
78-
|
79-
*/
80-
81-
'providers' => array(
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Application Debug Mode
8+
|--------------------------------------------------------------------------
9+
|
10+
| When your application is in debug mode, detailed error messages with
11+
| stack traces will be shown on every error that occurs within your
12+
| application. If disabled, a simple generic error page is shown.
13+
|
14+
*/
15+
16+
'debug' => false,
17+
18+
/*
19+
|--------------------------------------------------------------------------
20+
| Application URL
21+
|--------------------------------------------------------------------------
22+
|
23+
| This URL is used by the console to properly generate URLs when using
24+
| the Artisan command line tool. You should set this to the root of
25+
| your application so that it is used when running Artisan tasks.
26+
|
27+
*/
28+
29+
'url' => 'http://localhost',
30+
31+
/*
32+
|--------------------------------------------------------------------------
33+
| Application Timezone
34+
|--------------------------------------------------------------------------
35+
|
36+
| Here you may specify the default timezone for your application, which
37+
| will be used by the PHP date and date-time functions. We have gone
38+
| ahead and set this to a sensible default for you out of the box.
39+
|
40+
*/
41+
42+
'timezone' => 'UTC',
43+
44+
/*
45+
|--------------------------------------------------------------------------
46+
| Application Locale Configuration
47+
|--------------------------------------------------------------------------
48+
|
49+
| The application locale determines the default locale that will be used
50+
| by the translation service provider. You are free to set this value
51+
| to any of the locales which will be supported by the application.
52+
|
53+
*/
54+
55+
'locale' => 'en',
56+
57+
/*
58+
|--------------------------------------------------------------------------
59+
| Encryption Key
60+
|--------------------------------------------------------------------------
61+
|
62+
| This key is used by the Illuminate encrypter service and should be set
63+
| to a random, 32 character string, otherwise these encrypted strings
64+
| will not be safe. Please do this before deploying an application!
65+
|
66+
*/
67+
68+
'key' => 'Your App Key Here',
69+
70+
/*
71+
|--------------------------------------------------------------------------
72+
| Autoloaded Service Providers
73+
|--------------------------------------------------------------------------
74+
|
75+
| The service providers listed here will be automatically loaded on the
76+
| request to your application. Feel free to add your own services to
77+
| this array to grant expanded functionality to your applications.
78+
|
79+
*/
80+
81+
'providers' => array(
8282

8383
'Illuminate\Foundation\Providers\ArtisanServiceProvider',
8484
'Illuminate\Auth\AuthServiceProvider',
@@ -107,43 +107,43 @@
107107
'Illuminate\View\ViewServiceProvider',
108108
// 'Illuminate\Workbench\WorkbenchServiceProvider',
109109

110-
'McCool\LaravelAutoPresenter\LaravelAutoPresenterServiceProvider',
111-
'Intervention\Image\ImageServiceProvider',
112-
'Thomaswelton\LaravelGravatar\LaravelGravatarServiceProvider',
110+
'McCool\LaravelAutoPresenter\LaravelAutoPresenterServiceProvider',
111+
'Intervention\Image\ImageServiceProvider',
112+
'Thomaswelton\LaravelGravatar\LaravelGravatarServiceProvider',
113113
'Roumen\Sitemap\SitemapServiceProvider',
114114

115-
'Tricks\Providers\RepositoryServiceProvider',
116-
'Tricks\Providers\SocialServiceProvider',
115+
'Tricks\Providers\RepositoryServiceProvider',
116+
'Tricks\Providers\SocialServiceProvider',
117117
'Tricks\Providers\UploadServiceProvider',
118-
'Tricks\Providers\NavigationServiceProvider',
118+
'Tricks\Providers\NavigationServiceProvider',
119119
'Tricks\Providers\SitemapServiceProvider',
120-
),
121-
122-
/*
123-
|--------------------------------------------------------------------------
124-
| Service Provider Manifest
125-
|--------------------------------------------------------------------------
126-
|
127-
| The service provider manifest is used by Laravel to lazy load service
128-
| providers which are not needed for each request, as well to keep a
129-
| list of all of the services. Here, you may set its storage spot.
130-
|
131-
*/
132-
133-
'manifest' => storage_path().'/meta',
134-
135-
/*
136-
|--------------------------------------------------------------------------
137-
| Class Aliases
138-
|--------------------------------------------------------------------------
139-
|
140-
| This array of class aliases will be registered when this application
141-
| is started. However, feel free to register as many as you wish as
142-
| the aliases are "lazy" loaded so they don't hinder performance.
143-
|
144-
*/
145-
146-
'aliases' => array(
120+
),
121+
122+
/*
123+
|--------------------------------------------------------------------------
124+
| Service Provider Manifest
125+
|--------------------------------------------------------------------------
126+
|
127+
| The service provider manifest is used by Laravel to lazy load service
128+
| providers which are not needed for each request, as well to keep a
129+
| list of all of the services. Here, you may set its storage spot.
130+
|
131+
*/
132+
133+
'manifest' => storage_path().'/meta',
134+
135+
/*
136+
|--------------------------------------------------------------------------
137+
| Class Aliases
138+
|--------------------------------------------------------------------------
139+
|
140+
| This array of class aliases will be registered when this application
141+
| is started. However, feel free to register as many as you wish as
142+
| the aliases are "lazy" loaded so they don't hinder performance.
143+
|
144+
*/
145+
146+
'aliases' => array(
147147

148148
'App' => 'Illuminate\Support\Facades\App',
149149
'Artisan' => 'Illuminate\Support\Facades\Artisan',
@@ -183,13 +183,13 @@
183183
'Validator' => 'Illuminate\Support\Facades\Validator',
184184
'View' => 'Illuminate\Support\Facades\View',
185185

186-
'Github' => 'Tricks\Facades\Github',
187-
'GithubProvider' => 'Tricks\Facades\GithubProvider',
188-
// 'Image' => 'Intervention\Image\Facades\Image',
189-
'Gravatar' => 'Thomaswelton\LaravelGravatar\Facades\Gravatar',
190-
'ImageUpload' => 'Tricks\Facades\ImageUpload',
191-
'Navigation' => 'Tricks\Facades\Navigation',
186+
'Github' => 'Tricks\Facades\Github',
187+
'GithubProvider' => 'Tricks\Facades\GithubProvider',
188+
// 'Image' => 'Intervention\Image\Facades\Image',
189+
'Gravatar' => 'Thomaswelton\LaravelGravatar\Facades\Gravatar',
190+
'ImageUpload' => 'Tricks\Facades\ImageUpload',
191+
'Navigation' => 'Tricks\Facades\Navigation',
192192
'Disqus' => 'Tricks\Facades\Disqus',
193-
),
193+
),
194194

195195
);

0 commit comments

Comments
 (0)