Skip to content

Commit 2cde2cd

Browse files
committed
Merge pull request #11 from LaravelCollective/analysis-8KLljX
Applied fixes from StyleCI
2 parents bb0cdfb + 0d21e1b commit 2cde2cd

12 files changed

+1272
-1192
lines changed

config/remote.php

Lines changed: 48 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,49 @@
11
<?php
2-
return [
3-
/*
4-
|--------------------------------------------------------------------------
5-
| Default Remote Connection Name
6-
|--------------------------------------------------------------------------
7-
|
8-
| Here you may specify the default connection that will be used for SSH
9-
| operations. This name should correspond to a connection name below
10-
| in the server list. Each connection will be manually accessible.
11-
|
12-
*/
13-
'default' => 'production',
14-
/*
15-
|--------------------------------------------------------------------------
16-
| Remote Server Connections
17-
|--------------------------------------------------------------------------
18-
|
19-
| These are the servers that will be accessible via the SSH task runner
20-
| facilities of Laravel. This feature radically simplifies executing
21-
| tasks on your servers, such as deploying out these applications.
22-
|
23-
*/
24-
'connections' => [
25-
'production' => [
26-
'host' => '',
27-
'username' => '',
28-
'password' => '',
29-
'key' => '',
30-
'keytext' => '',
31-
'keyphrase' => '',
32-
'agent' => '',
33-
],
34-
],
35-
/*
36-
|--------------------------------------------------------------------------
37-
| Remote Server Groups
38-
|--------------------------------------------------------------------------
39-
|
40-
| Here you may list connections under a single group name, which allows
41-
| you to easily access all of the servers at once using a short name
42-
| that is extremely easy to remember, such as "web" or "database".
43-
|
44-
*/
45-
'groups' => [
46-
'web' => [ 'production' ]
47-
],
48-
];
2+
3+
return [
4+
/*
5+
|--------------------------------------------------------------------------
6+
| Default Remote Connection Name
7+
|--------------------------------------------------------------------------
8+
|
9+
| Here you may specify the default connection that will be used for SSH
10+
| operations. This name should correspond to a connection name below
11+
| in the server list. Each connection will be manually accessible.
12+
|
13+
*/
14+
'default' => 'production',
15+
/*
16+
|--------------------------------------------------------------------------
17+
| Remote Server Connections
18+
|--------------------------------------------------------------------------
19+
|
20+
| These are the servers that will be accessible via the SSH task runner
21+
| facilities of Laravel. This feature radically simplifies executing
22+
| tasks on your servers, such as deploying out these applications.
23+
|
24+
*/
25+
'connections' => [
26+
'production' => [
27+
'host' => '',
28+
'username' => '',
29+
'password' => '',
30+
'key' => '',
31+
'keytext' => '',
32+
'keyphrase' => '',
33+
'agent' => '',
34+
],
35+
],
36+
/*
37+
|--------------------------------------------------------------------------
38+
| Remote Server Groups
39+
|--------------------------------------------------------------------------
40+
|
41+
| Here you may list connections under a single group name, which allows
42+
| you to easily access all of the servers at once using a short name
43+
| that is extremely easy to remember, such as "web" or "database".
44+
|
45+
*/
46+
'groups' => [
47+
'web' => ['production'],
48+
],
49+
];

phpunit.php

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
<?php
2-
/*
3-
|--------------------------------------------------------------------------
4-
| Register The Composer Auto Loader
5-
|--------------------------------------------------------------------------
6-
|
7-
| Composer provides a convenient, automatically generated class loader
8-
| for our application. We just need to utilize it! We'll require it
9-
| into the script here so that we do not have to worry about the
10-
| loading of any our classes "manually". Feels great to relax.
11-
|
12-
*/
13-
require __DIR__.'/vendor/autoload.php';
14-
/*
15-
|--------------------------------------------------------------------------
16-
| Set The Default Timezone
17-
|--------------------------------------------------------------------------
18-
|
19-
| Here we will set the default timezone for PHP. PHP is notoriously mean
20-
| if the timezone is not explicitly set. This will be used by each of
21-
| the PHP date and date-time functions throughout the application.
22-
|
23-
*/
24-
date_default_timezone_set('UTC');
2+
/*
3+
|--------------------------------------------------------------------------
4+
| Register The Composer Auto Loader
5+
|--------------------------------------------------------------------------
6+
|
7+
| Composer provides a convenient, automatically generated class loader
8+
| for our application. We just need to utilize it! We'll require it
9+
| into the script here so that we do not have to worry about the
10+
| loading of any our classes "manually". Feels great to relax.
11+
|
12+
*/
13+
require __DIR__.'/vendor/autoload.php';
14+
/*
15+
|--------------------------------------------------------------------------
16+
| Set The Default Timezone
17+
|--------------------------------------------------------------------------
18+
|
19+
| Here we will set the default timezone for PHP. PHP is notoriously mean
20+
| if the timezone is not explicitly set. This will be used by each of
21+
| the PHP date and date-time functions throughout the application.
22+
|
23+
*/
24+
date_default_timezone_set('UTC');

0 commit comments

Comments
 (0)