Skip to content

Commit b011040

Browse files
👌 adding type hints as suggested by review
1 parent ecfc973 commit b011040

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

app/code/Magento/Indexer/Console/Command/IndexerStatusCommand.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ protected function execute(InputInterface $input, OutputInterface $output)
6565
usort(
6666
$rows,
6767
function ($comp1, $comp2) {
68+
/**
69+
* @var array $comp1
70+
* @var array $comp2
71+
*/
6872
return strcmp($comp1['Title'], $comp2['Title']);
6973
}
7074
);

0 commit comments

Comments
 (0)