diff --git a/webapp/src/Entity/Language.php b/webapp/src/Entity/Language.php index fcf35c5a15..879a107937 100644 --- a/webapp/src/Entity/Language.php +++ b/webapp/src/Entity/Language.php @@ -211,6 +211,9 @@ public function getCompileExecutableHash(): ?string return $this->compile_executable?->getImmutableExecutable()->getHash(); } + /** + * @return array + */ #[Serializer\VirtualProperty] #[Serializer\SerializedName('compiler')] #[Serializer\Exclude(if:'object.getCompilerVersionCommand() == ""')] @@ -226,6 +229,9 @@ public function getCompilerData(): ?array return $ret; } + /** + * @return array + */ #[Serializer\VirtualProperty] #[Serializer\SerializedName('runner')] #[Serializer\Exclude(if:'object.getRunnerVersionCommand() == ""')]