Skip to content

Commit c62a75a

Browse files
fix: add type hints to SplitCommand::getSplitDestination parameters (#123)
- Add int type hint to $index parameter - Add bool type hint to $md5 parameter - Fixes strict_types compliance issue at lines 67-72 Co-authored-by: Claude <[email protected]>
1 parent 51b50a3 commit c62a75a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Command/SplitCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ protected function execute(InputInterface $input, OutputInterface $output): int
6565
}
6666

6767
private function getSplitDestination(
68-
$index,
69-
$md5,
68+
int $index,
69+
bool $md5,
7070
\Deviantintegral\Har\Har $cloned,
7171
string $destination_path,
7272
): string {

0 commit comments

Comments
 (0)