@@ -129,7 +129,7 @@ discard block |
||
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 |
||
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) { |