diff --git a/src/Cli/App.php b/src/Cli/App.php index 9e419e9..6e4601a 100644 --- a/src/Cli/App.php +++ b/src/Cli/App.php @@ -8,6 +8,7 @@ use Ahc\Cli\Application; use Siteworxpro\App\Cli\Commands\DemoCommand; use Siteworxpro\App\Cli\Commands\Queue\Start; use Siteworxpro\App\Cli\Commands\Queue\TestJob; +use Siteworxpro\App\Helpers\Version; use Siteworxpro\App\Kernel; use Siteworxpro\App\Services\Facades\Config; @@ -21,7 +22,7 @@ class App public function __construct() { Kernel::boot(); - $this->app = new Application('Php-Template', Config::get('app.version') ?? 'dev-master'); + $this->app = new Application('Php-Template', Version::VERSION); $this->app->add(new DemoCommand()); $this->app->add(new Start()); diff --git a/src/Helpers/Version.php b/src/Helpers/Version.php index 51bfeda..4b7bfc4 100644 --- a/src/Helpers/Version.php +++ b/src/Helpers/Version.php @@ -6,5 +6,5 @@ namespace Siteworxpro\App\Helpers; class Version { - public const string VERSION = 'dev-version'; + public const string VERSION = 'dev-master'; }