diff --git a/app/Commands/Init.php b/app/Commands/Init.php index a3c0a03..5b01672 100644 --- a/app/Commands/Init.php +++ b/app/Commands/Init.php @@ -31,7 +31,7 @@ class Init extends Command /** * @return string */ - public function getConfigPath() + public function getConfigPath(): string { return $this->config_path; } @@ -39,7 +39,7 @@ public function getConfigPath() /** * Get path of config file */ - public function getConfigFile() + public function getConfigFile(): string { return $this->getConfigPath() . '/db-config.json'; } diff --git a/builds/laravel-buddy b/builds/laravel-buddy index 2b126ba..363bd6f 100755 Binary files a/builds/laravel-buddy and b/builds/laravel-buddy differ diff --git a/composer.json b/composer.json index 4198936..f6da5cd 100644 --- a/composer.json +++ b/composer.json @@ -47,5 +47,5 @@ }, "minimum-stability": "dev", "prefer-stable": true, - "bin": ["builds/buddy"] + "bin": ["builds/laravel-buddy"] }