From 9ff78b985893ad0501d9356ef1bd8fa58ddfc393 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Thu, 5 Sep 2024 10:39:18 +0200 Subject: [PATCH] Fix CS --- .../Common/Annotations/AnnotationReader.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/lib/Doctrine/Common/Annotations/AnnotationReader.php b/lib/Doctrine/Common/Annotations/AnnotationReader.php index 32254ce6f..566fcd42f 100644 --- a/lib/Doctrine/Common/Annotations/AnnotationReader.php +++ b/lib/Doctrine/Common/Annotations/AnnotationReader.php @@ -9,13 +9,13 @@ use ReflectionMethod; use ReflectionProperty; -use const FILTER_VALIDATE_BOOLEAN; - -use function extension_loaded; use function array_merge; use function class_exists; -use function ini_get; +use function extension_loaded; use function filter_var; +use function ini_get; + +use const FILTER_VALIDATE_BOOLEAN; /** * A reader for docblock annotations. @@ -119,8 +119,10 @@ public function __construct(?DocParser $parser = null) throw AnnotationException::optimizerPlusSaveComments(); } - if (extension_loaded('Zend OPcache') && - filter_var(ini_get('opcache.save_comments'), FILTER_VALIDATE_BOOLEAN) === false) { + if ( + extension_loaded('Zend OPcache') && + filter_var(ini_get('opcache.save_comments'), FILTER_VALIDATE_BOOLEAN) === false + ) { throw AnnotationException::optimizerPlusSaveComments(); }