File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 228228 <property name =" ignoreUnusedValuesWhenOnlyKeysAreUsedInForeach" value =" true" />
229229 </properties >
230230 </rule >
231+
232+ <!-- These should get handled by the upstream Symfony standard later -->
233+ <rule ref =" SlevomatCodingStandard.Arrays.SingleLineArrayWhitespace" />
234+ <rule ref =" SlevomatCodingStandard.Namespaces.ReferenceUsedNamesOnly" >
235+ <properties >
236+ <property name =" allowFullyQualifiedGlobalClasses" value =" true" />
237+ <property name =" allowFullyQualifiedGlobalConstants" value =" true" />
238+ <property name =" allowFullyQualifiedGlobalFunctions" value =" true" />
239+ <property name =" allowFullyQualifiedExceptions" value =" true" />
240+ <property name =" searchAnnotations" value =" true" />
241+ </properties >
242+ </rule >
231243</ruleset >
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ static function ($v) use ($myStandardName): bool {
4848 * versions to run with Xdebug 3 for code coverage.
4949 */
5050
51- if ((true === \ extension_loaded ('xdebug ' )) && (true === \ version_compare ((string ) \ phpversion ('xdebug ' ), '3 ' , '>= ' ))) {
51+ if ((true === extension_loaded ('xdebug ' )) && (true === version_compare ((string ) phpversion ('xdebug ' ), '3 ' , '>= ' ))) {
5252 if (false === defined ('XDEBUG_CC_UNUSED ' )) {
5353 define ('XDEBUG_CC_UNUSED ' , null );
5454 }
You can’t perform that action at this time.
0 commit comments