Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dec8fe8

Browse files
committed
Last fixes
1 parent db2ed85 commit dec8fe8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

app/commands/CleanCommand.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,9 @@ public function fire()
8686
*******************************************************************/
8787
protected function runArtisan()
8888
{
89-
$this->comment('Running artisan commands...');
89+
$this->comment('Generating a key...');
9090
Artisan::call('key:generate', array(), new StreamOutput($this->stream));
91+
$this->comment('Adding the migration table...');
9192
Artisan::call('migrate:install', array(), new StreamOutput($this->stream));
9293
Artisan::call('syntax:database', array(), new StreamOutput($this->stream));
9394
Artisan::call('syntax:gulp', array(), new StreamOutput($this->stream));

app/commands/Syntax/SetupCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,10 @@ protected function configureCore()
202202
File::put($path, $contents);
203203
}
204204

205-
protected function configureChat($config)
205+
protected function configureChat()
206206
{
207207
list($path, $contents) = $this->getConfig('packages/syntax/chat/chatConfig.json');
208-
File::put($path, $config);
208+
File::put($path, $this->chatConfig);
209209
}
210210

211211
/********************************************************************

0 commit comments

Comments
 (0)