Skip to content

Commit 5e28226

Browse files
committed
Merge pull request #83 from jbrooksuk/fix-psr2
Fix PSR2
2 parents aef56f2 + 955bcee commit 5e28226

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

resources/lang/en/commands.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@
4242
'example' => 'e.g.',
4343
'optional_description' => 'Ask at deploy time whether or not the include this step'
4444

45-
];
45+
];

resources/lang/en/heartbeats.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
'interval_1440' => '1 day',
2525
'interval_10080' => '1 week'
2626

27-
];
27+
];

server.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
1414
// built-in PHP web server. This provides a convenient way to test a Laravel
1515
// application without having installed a "real" web server software here.
16-
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri))
17-
{
16+
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
1817
return false;
1918
}
2019

0 commit comments

Comments
 (0)