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 228
228
<property name =" ignoreUnusedValuesWhenOnlyKeysAreUsedInForeach" value =" true" />
229
229
</properties >
230
230
</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 >
231
243
</ruleset >
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ static function ($v) use ($myStandardName): bool {
48
48
* versions to run with Xdebug 3 for code coverage.
49
49
*/
50
50
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 ' , '>= ' ))) {
52
52
if (false === defined ('XDEBUG_CC_UNUSED ' )) {
53
53
define ('XDEBUG_CC_UNUSED ' , null );
54
54
}
You can’t perform that action at this time.
0 commit comments