We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84e0d78 commit 11e59ffCopy full SHA for 11e59ff
webapp/src/Controller/Jury/ExecutableController.php
@@ -60,6 +60,9 @@ public function indexAction(Request $request): Response
60
->addOrderBy('e.type', 'ASC')
61
->addOrderBy('e.execid', 'ASC')
62
->getQuery()->getResult();
63
+ // PhpStorm doesn't pick this up without,
64
+ // based on a dump this is `"c" => App\Entity\Executable`.
65
+ /** @var Executable[] $executables */
66
$executables = array_column($executables, 'executable', 'execid');
67
$table_fields = [
68
'icon' => ['title' => 'type', 'sort' => false],
0 commit comments