@@ -22,7 +22,7 @@ class Init extends Command
22
22
*/
23
23
protected $ description = 'Initialise Laravel Buddy ' ;
24
24
25
- private $ project ;
25
+ private string $ projectName ;
26
26
27
27
private string $ directory ;
28
28
@@ -54,21 +54,21 @@ public function setConfigPath(): void
54
54
/**
55
55
* Get project name
56
56
*
57
- * @return null
57
+ * @return string
58
58
*/
59
- public function getProject ()
59
+ public function getProjectName (): string
60
60
{
61
- return $ this ->project ;
61
+ return $ this ->projectName ;
62
62
}
63
63
64
64
/**
65
65
* Set project name
66
66
*
67
- * @param null $project
67
+ * @param string $projectName
68
68
*/
69
- public function setProject ( $ project ): void
69
+ public function setProjectName ( string $ projectName ): void
70
70
{
71
- $ this ->project = $ project ;
71
+ $ this ->projectName = $ projectName ;
72
72
}
73
73
74
74
/**
@@ -86,7 +86,7 @@ public function setDirectory($project)
86
86
*
87
87
* @return string
88
88
*/
89
- public function getDirectory ()
89
+ public function getDirectory (): string
90
90
{
91
91
return $ this ->directory ;
92
92
}
@@ -96,11 +96,11 @@ public function getDirectory()
96
96
*
97
97
* @return void
98
98
*/
99
- public function handle ()
99
+ public function handle (): void
100
100
{
101
- $ this ->task ("Intitialising " , function () {
101
+ $ this ->task ("Initialising " , function () {
102
102
$ this ->setDirectory ($ this ->argument ('project ' ));
103
- $ this ->setProject ($ this ->argument ('project ' ));
103
+ $ this ->setProjectName ($ this ->argument ('project ' ));
104
104
$ this ->setConfigPath ();
105
105
});
106
106
@@ -217,7 +217,7 @@ protected function setDatabaseCredentials(array $dbInfo)
217
217
{
218
218
$ connection = collect ($ dbInfo )->first ()['DB_CONNECTION ' ];
219
219
220
- chdir ($ this ->getProject ());
220
+ chdir ($ this ->getProjectName ());
221
221
222
222
$ this ->writeToEnv ($ dbInfo [$ connection ]);
223
223
@@ -229,7 +229,7 @@ protected function setDatabaseCredentials(array $dbInfo)
229
229
*
230
230
* @return string
231
231
*/
232
- protected function findComposer ()
232
+ protected function findComposer (): string
233
233
{
234
234
$ composer_path = getcwd () . '/composer.phar ' ;
235
235
0 commit comments