Skip to content

Commit f5aa67a

Browse files
author
Holger Lösken
committed
Fix cs
1 parent 4aed0a4 commit f5aa67a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Command/IndexCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ protected function getEntitiesFromArgs(InputInterface $input, OutputInterface $o
4444
$list = \explode(',', $indexList);
4545
$indexNames = collect($list)->transform(function (string $item) {
4646
// Check if the given index name already contains the prefix
47-
if(strpos($item, $this->prefix) === false) {
47+
if (false === strpos($item, $this->prefix)) {
4848
return $this->prefix.$item;
4949
}
5050

0 commit comments

Comments
 (0)