diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 7ced70a2901..b6edd81716c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -2,10 +2,6 @@ name: Symfony UX on: [push, pull_request] -env: - SYMFONY_PHPUNIT_DIR: '/tmp/.phpunit' - SYMFONY_PHPUNIT_VERSION: '8.5' - jobs: coding-style-php: runs-on: ubuntu-latest diff --git a/src/Turbo/Doctrine/BroadcastListener.php b/src/Turbo/Doctrine/BroadcastListener.php index 28a16fcc383..a6da10ddc0e 100644 --- a/src/Turbo/Doctrine/BroadcastListener.php +++ b/src/Turbo/Doctrine/BroadcastListener.php @@ -129,7 +129,6 @@ private function storeEntitiesToPublish(EntityManagerInterface $em, object $enti if (\PHP_VERSION_ID >= 80000 && $options = ($r = new \ReflectionClass($class))->getAttributes(Broadcast::class)) { $options = $options[0]->newInstance(); - // @phpstan-ignore-next-line $this->broadcastedClasses[$class] = $options->options; } elseif ($this->annotationReader && $options = $this->annotationReader->getClassAnnotation($r ?? new \ReflectionClass($class), Broadcast::class)) { $this->broadcastedClasses[$class] = $options->options;