1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00

Set further phpcs fqn options

This commit is contained in:
ralila 2021-12-03 22:44:41 +01:00
parent 30a65685a2
commit d5d277f579
2 changed files with 8 additions and 6 deletions

View File

@ -83,12 +83,12 @@
<property name="allowFullyQualifiedGlobalConstants" type="bool" value="false"/>
<property name="allowFullyQualifiedGlobalClasses" type="bool" value="false"/>
<property name="allowFullyQualifiedNameForCollidingClasses" type="bool" value="true"/>
<property name="allowFullyQualifiedNameForCollidingFunctions" type="bool" value="true"/>
<property name="allowFullyQualifiedNameForCollidingConstants" type="bool" value="true"/>
<property name="allowFullyQualifiedNameForCollidingClasses" type="bool" value="false"/>
<property name="allowFullyQualifiedNameForCollidingFunctions" type="bool" value="false"/>
<property name="allowFullyQualifiedNameForCollidingConstants" type="bool" value="false"/>
<property name="allowFallbackGlobalFunctions" type="bool" value="true"/>
<property name="allowFallbackGlobalConstants" type="bool" value="true"/>
<property name="allowFallbackGlobalFunctions" type="bool" value="false"/>
<property name="allowFallbackGlobalConstants" type="bool" value="false"/>
<property name="allowPartialUses" type="bool" value="true"/>

View File

@ -1,7 +1,9 @@
<?php
namespace Psalm\Tests\Internal\Provider;
class ProjectCacheProvider extends \Psalm\Internal\Provider\ProjectCacheProvider
use Psalm\Internal\Provider\ProjectCacheProvider as PsalmProjectCacheProvider;
class ProjectCacheProvider extends PsalmProjectCacheProvider
{
/**
* @var int