Skip to content

Commit 548cccd

Browse files
committed
Apply fixes from StyleCI
[ci skip] [skip ci]
1 parent da026bc commit 548cccd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/Console/Commands/AddCustomRouteContent.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@ public function handle()
111111

112112
// push all other elements one line down creating space for the new code
113113
for ($i = count($originalContent) - 1; $i > $lastLine; $i--) {
114-
$originalContent[$i+1] = $originalContent[$i];
114+
$originalContent[$i + 1] = $originalContent[$i];
115115
}
116-
116+
117117
// merge the second part of the lastLineContent starting from the lastElement
118-
$originalContent[$lastLine+1] = implode(';', array_slice($lastLineContent, $lastElement));
118+
$originalContent[$lastLine + 1] = implode(';', array_slice($lastLineContent, $lastElement));
119119
$lastLine++;
120120
}
121121

0 commit comments

Comments
 (0)