@@ -28,7 +28,7 @@ |
||
28 | 28 | ) |
29 | 29 | ); |
30 | 30 | |
31 | - $this->output->writeln('<info>Created file: <comment>' . $outFile .'<comment></info>'); |
|
31 | + $this->output->writeln('<info>Created file: <comment>' . $outFile . '<comment></info>'); |
|
32 | 32 | |
33 | 33 | return true; |
34 | 34 | } |
@@ -28,7 +28,7 @@ |
||
28 | 28 | ) |
29 | 29 | ); |
30 | 30 | |
31 | - $this->output->writeln('<info>Created file: <comment>' . $outFile .'<comment></info>'); |
|
31 | + $this->output->writeln('<info>Created file: <comment>' . $outFile . '<comment></info>'); |
|
32 | 32 | |
33 | 33 | return true; |
34 | 34 | } |
@@ -49,7 +49,7 @@ |
||
49 | 49 | 'status' => 1, |
50 | 50 | 'is_redeemable' => 1, |
51 | 51 | 'website_id' => $input->getOption('website') |
52 | - ? : $this->getObjectManager()->get('Magento\Store\Model\StoreManager')->getWebsite(true)->getId(), |
|
52 | + ?: $this->getObjectManager()->get('Magento\Store\Model\StoreManager')->getWebsite(true)->getId(), |
|
53 | 53 | 'balance' => $input->getArgument('amount'), |
54 | 54 | 'date_expires' => $input->getOption('expires') |
55 | 55 | ) |
@@ -82,7 +82,7 @@ |
||
82 | 82 | return $a['Status'] !== 'OK'; |
83 | 83 | }); |
84 | 84 | |
85 | - array_walk($table, function (&$row) { |
|
85 | + array_walk($table, function(&$row) { |
|
86 | 86 | $status = $row['Status']; |
87 | 87 | $availableStatus = array('OK' => 'info', 'Error' => 'error'); |
88 | 88 | $statusString = sprintf( |