Skip to content

Commit 2f358a2

Browse files
AnrDaemonroxblnfk
andauthored
Removed unnecessary string operations (#43)
Co-authored-by: roxblnfk <[email protected]>
1 parent ad0a80c commit 2f358a2

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/FileRepository.php

+2-6
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ private function getFiles(string $directory): \Generator
136136
{
137137
foreach ($this->files->getFiles($directory, '*.php') as $filename) {
138138
$reflection = new ReflectionFile($filename);
139-
$definition = \explode('_', \basename($filename));
139+
$definition = \explode('_', \basename($filename, '.php'), 3);
140140

141141
if (\count($definition) < 3) {
142142
throw new RepositoryException("Invalid migration filename '{$filename}'");
@@ -152,11 +152,7 @@ private function getFiles(string $directory): \Generator
152152
'class' => $reflection->getClasses()[0],
153153
'created' => $created,
154154
'chunk' => $definition[1],
155-
'name' => \str_replace(
156-
'.php',
157-
'',
158-
\implode('_', \array_slice($definition, 2))
159-
),
155+
'name' => $definition[2],
160156
];
161157
}
162158
}

0 commit comments

Comments
 (0)