Skip to content

change entrypoint class name. #20

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 27, 2025
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