Skip to content

Commit 20df263

Browse files
authored
fix typos in command and minor refactoring (#3)
1 parent 4a1af45 commit 20df263

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

app/Commands/Init.php

+13-13
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Init extends Command
2222
*/
2323
protected $description = 'Initialise Laravel Buddy';
2424

25-
private $project;
25+
private string $projectName;
2626

2727
private string $directory;
2828

@@ -54,21 +54,21 @@ public function setConfigPath(): void
5454
/**
5555
* Get project name
5656
*
57-
* @return null
57+
* @return string
5858
*/
59-
public function getProject()
59+
public function getProjectName(): string
6060
{
61-
return $this->project;
61+
return $this->projectName;
6262
}
6363

6464
/**
6565
* Set project name
6666
*
67-
* @param null $project
67+
* @param string $projectName
6868
*/
69-
public function setProject($project): void
69+
public function setProjectName(string $projectName): void
7070
{
71-
$this->project = $project;
71+
$this->projectName = $projectName;
7272
}
7373

7474
/**
@@ -86,7 +86,7 @@ public function setDirectory($project)
8686
*
8787
* @return string
8888
*/
89-
public function getDirectory()
89+
public function getDirectory(): string
9090
{
9191
return $this->directory;
9292
}
@@ -96,11 +96,11 @@ public function getDirectory()
9696
*
9797
* @return void
9898
*/
99-
public function handle()
99+
public function handle(): void
100100
{
101-
$this->task("Intitialising", function () {
101+
$this->task("Initialising", function () {
102102
$this->setDirectory($this->argument('project'));
103-
$this->setProject($this->argument('project'));
103+
$this->setProjectName($this->argument('project'));
104104
$this->setConfigPath();
105105
});
106106

@@ -217,7 +217,7 @@ protected function setDatabaseCredentials(array $dbInfo)
217217
{
218218
$connection = collect($dbInfo)->first()['DB_CONNECTION'];
219219

220-
chdir($this->getProject());
220+
chdir($this->getProjectName());
221221

222222
$this->writeToEnv($dbInfo[$connection]);
223223

@@ -229,7 +229,7 @@ protected function setDatabaseCredentials(array $dbInfo)
229229
*
230230
* @return string
231231
*/
232-
protected function findComposer()
232+
protected function findComposer(): string
233233
{
234234
$composer_path = getcwd() . '/composer.phar';
235235

builds/laravel-buddy

11 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)