Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
muglug committed Nov 30, 2019
1 parent 1b9273c commit d134482
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Psalm/Internal/Visitor/ReflectorVisitor.php
Expand Up @@ -1127,9 +1127,9 @@ private function registerClassLike(PhpParser\Node\Stmt\ClassLike $node)
if ($docblock_info->templates) {
$storage->template_types = [];

usort(
\usort(
$docblock_info->templates,
function(array $l, array $r) : int {
function (array $l, array $r) : int {
return $l[4] > $r[4] ? 1 : -1;
}
);
Expand Down

0 comments on commit d134482

Please sign in to comment.