Skip to content

Commit

Permalink
Apply fixes from StyleCI (#894)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbelien authored Jan 27, 2023
1 parent b2244bb commit 22051c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/NewMapperCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int

$features = array_filter($changesetsCollection['features'], fn (array $feature) => !\in_array((int) $feature['properties']['uid'], $usersDeleted, true));

$usersId = array_unique(array_map(fn (array $feature) => (int) $feature['properties']['uid'], $features), SORT_NUMERIC);
$usersId = array_unique(array_map(fn (array $feature) => (int) $feature['properties']['uid'], $features), \SORT_NUMERIC);

/** @var Mapper[] */
$mappers = [];
Expand Down

0 comments on commit 22051c5

Please sign in to comment.