We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3223b6d commit 9987e27Copy full SHA for 9987e27
src/Tasks/AnonymousMigrations.php
@@ -2,7 +2,6 @@
2
3
namespace Shift\Cli\Tasks;
4
5
-use Illuminate\Support\Str;
6
use Shift\Cli\Sdk\Contracts\Task;
7
use Shift\Cli\Sdk\Models\File;
8
use Shift\Cli\Sdk\Traits\FindsFiles;
@@ -94,9 +93,9 @@ private function convertClassDefinition($contents): ?string
94
93
if (! $found) {
95
return null;
96
}
97
- $contents = \substr_replace( $contents,
+ $contents = \substr_replace($contents,
98
';',
99
- $class['offset']['end'] +1 ,
+ $class['offset']['end'] + 1,
100
0
101
);
102
0 commit comments