Completed
Pull Request — master (#25)
by Joshua
04:40
created
Command/Schema/Create.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
         $types = (null === $type) ? 'all types' : sprintf('model type "%s"', $type);
54 54
 
55 55
         $count = count($this->manager->getIndices($type));
56
-        $output->writeln(sprintf('Creating <info>%s</info> %s for <info>%s</info>',$count, $count == 1 ? 'index' : 'indices', $types));
56
+        $output->writeln(sprintf('Creating <info>%s</info> %s for <info>%s</info>', $count, $count == 1 ? 'index' : 'indices', $types));
57 57
 
58 58
         foreach ($this->manager->getIndices($type) as $index) {
59 59
             $output->writeln(sprintf('    Creating index <info>%s</info> for model <info>%s</info>', $index['name'], $index['model_type']));
Please login to merge, or discard this patch.