Skip to content

Commit

Permalink
Apply fixes from StyleCI (#458)
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints authored Apr 8, 2021
1 parent db9e7b2 commit 739471e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Console/IndexCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function handle(EngineManager $manager)
if ($this->option('delete')) {
$engine->deleteIndex($this->argument('name'));

$this->info('Index "' . $this->argument('name') . '" deleted.');
$this->info('Index "'.$this->argument('name').'" deleted.');

return;
}
Expand All @@ -52,7 +52,7 @@ public function handle(EngineManager $manager)

$engine->createIndex($this->argument('name'), $options);

$this->info('Index "' . $this->argument('name') . '" created.');
$this->info('Index "'.$this->argument('name').'" created.');
} catch (Exception $exception) {
$this->error($exception->getMessage());
}
Expand Down

0 comments on commit 739471e

Please sign in to comment.