Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

### Features

* Change entrypoint class name.

### Bug fix

* Moved command-line option parsing logic into separate classes for better maintainability
Expand Down
6 changes: 3 additions & 3 deletions bin/php-variable-hard-usage
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ foreach ([__DIR__ . '/../../../autoload.php', __DIR__ . '/../vendor/autoload.php
}
}

use Smeghead\PhpVariableHardUsage\Command;
use Smeghead\PhpVariableHardUsage\EntryPoint;
use Smeghead\PhpVariableHardUsage\Option\GetOptions;

$getOptions = new GetOptions($_SERVER['argv']);
$result = $getOptions->parse();

$command = new Command();
$exitCode = $command->run($result->options, $result->paths);
$entryPoint = new EntryPoint();
$exitCode = $entryPoint->run($result->options, $result->paths);
exit($exitCode);
2 changes: 1 addition & 1 deletion src/Command.php → src/EntryPoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Smeghead\PhpVariableHardUsage\Option\CommandFactory;

final class Command
final class EntryPoint
{
/**
* @param array<string, string|bool> $options
Expand Down