Skip to content

Commit 31eaf0e

Browse files
committed
php-cs-fixer fix
1 parent 6a937a9 commit 31eaf0e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

components/ILIAS/LTIConsumer/classes/class.ilLTIConsumerGradeSynchronizationTableGUI.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ protected function applyOrdering(array $records, Order $order): array
9898
fn($ret, $key, $value) => [$key, $value]
9999
);
100100

101-
usort($records, static function(array $left, array $right) use ($order_field): int {
101+
usort($records, static function (array $left, array $right) use ($order_field): int {
102102
$left_val = $left[$order_field] ?? '';
103103
$right_val = $right[$order_field] ?? '';
104104

components/ILIAS/LTIConsumer/classes/class.ilLTIConsumerProviderTableGUI.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ protected function applyOrdering(array $records, Order $order): array
151151
fn($ret, $key, $value) => [$key, $value]
152152
);
153153

154-
usort($records, static function(array $left, array $right) use ($order_field): int {
154+
usort($records, static function (array $left, array $right) use ($order_field): int {
155155
$left_val = $left[$order_field] ?? '';
156156
$right_val = $right[$order_field] ?? '';
157157
return ilStr::strCmp($left_val, $right_val);

components/ILIAS/LTIConsumer/classes/class.ilLTIConsumerProviderUsageTableGUI.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ protected function applyOrdering(array $records, Order $order): array
106106
fn($ret, $key, $value) => [$key, $value]
107107
);
108108

109-
usort($records, static function(array $left, array $right) use ($order_field): int {
109+
usort($records, static function (array $left, array $right) use ($order_field): int {
110110
$left_val = $left[$order_field] ?? '';
111111
$right_val = $right[$order_field] ?? '';
112112
return ilStr::strCmp($left_val, $right_val);

components/ILIAS/LTIProvider/classes/Consumer/class.ilObjectConsumerTableGUI.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ protected function applyOrdering(array $records, Order $order): array
244244
fn($ret, $key, $value) => [$key, $value]
245245
);
246246

247-
usort($records, static function(array $left, array $right) use ($order_field): int {
247+
usort($records, static function (array $left, array $right) use ($order_field): int {
248248
$left_val = $left[$order_field] ?? '';
249249
$right_val = $right[$order_field] ?? '';
250250
return ilStr::strCmp($left_val, $right_val);

components/ILIAS/LTIProvider/classes/InternalProvider/class.ilLTIProviderReleasedObjectsTableGUI.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ protected function applyOrdering(array $records, Order $order): array
167167
fn($ret, $key, $value) => [$key, $value]
168168
);
169169

170-
usort($records, static function(array $left, array $right) use ($order_field): int {
170+
usort($records, static function (array $left, array $right) use ($order_field): int {
171171
$left_val = $left[$order_field] ?? '';
172172
$right_val = $right[$order_field] ?? '';
173173
return ilStr::strCmp($left_val, $right_val);

0 commit comments

Comments
 (0)