From 0036669bf35b39c847d1ff66db60b7c35160ea1d Mon Sep 17 00:00:00 2001 From: Greg Bowler Date: Thu, 23 Sep 2021 15:12:28 +0100 Subject: [PATCH] Cli standardisation (#10) * build: update deps * stan: port should be string * stan: cast port integer to string * refactor: use standard namespace cli --- bin/serve | 4 ++-- src/{Command => Cli}/StartCommand.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename src/{Command => Cli}/StartCommand.php (98%) diff --git a/bin/serve b/bin/serve index c7dea01..73d270f 100755 --- a/bin/serve +++ b/bin/serve @@ -2,7 +2,7 @@ run(); \ No newline at end of file +$app->run(); diff --git a/src/Command/StartCommand.php b/src/Cli/StartCommand.php similarity index 98% rename from src/Command/StartCommand.php rename to src/Cli/StartCommand.php index a61dc13..1a5d72d 100644 --- a/src/Command/StartCommand.php +++ b/src/Cli/StartCommand.php @@ -1,5 +1,5 @@