Completed
Push — master ( c814ba...8cfaee )
by Jan
04:18
created
src/Command/ConvertBBCodeCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
                 ->select('e');
130 130
             //Add fields criteria
131 131
             foreach ($properties as $key => $property) {
132
-                $qb->orWhere('e.' . $property . ' LIKE ?' . $key);
132
+                $qb->orWhere('e.'.$property.' LIKE ?'.$key);
133 133
                 $qb->setParameter($key, static::BBCODE_CRITERIA);
134 134
             }
135 135
 
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
             foreach ($results as $result) {
142 142
                 /** @var NamedDBElement $result */
143 143
                 $io->writeln(
144
-                    'Convert entity: ' . $result->getName() . ' (' . $result->getIDString() . ')',
144
+                    'Convert entity: '.$result->getName().' ('.$result->getIDString().')',
145 145
                     OutputInterface::VERBOSITY_VERBOSE
146 146
                 );
147 147
                 foreach ($properties as $property) {
Please login to merge, or discard this patch.