-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9ef09d5
commit 87e64ee
Showing
5 changed files
with
63 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,30 @@ | ||
<?xml version="1.0"?> | ||
<psalm xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns="https://getpsalm.org/schema/config" | ||
name="Psalm for PHP Library Starter" | ||
useDocblockTypes="true" | ||
errorLevel="3" | ||
strictBinaryOperands="false" | ||
rememberPropertyAssignmentsAfterCall="true" | ||
checkForThrowsDocblock="false" | ||
throwExceptionOnError="0" | ||
ensureArrayStringOffsetsExist="true" | ||
ensureArrayIntOffsetsExist="false" | ||
resolveFromConfigFile="true" | ||
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd" | ||
> | ||
<projectFiles> | ||
<directory name="src"/> | ||
<ignoreFiles> | ||
<directory name="vendor"/> | ||
</ignoreFiles> | ||
</projectFiles> | ||
|
||
<issueHandlers> | ||
<InaccessibleProperty> | ||
<errorLevel type="suppress"> | ||
<file name="src/CacheItemPool.php"/> | ||
</errorLevel> | ||
</InaccessibleProperty> | ||
|
||
<PossiblyUndefinedVariable> | ||
<errorLevel type="suppress"> | ||
<file name="src/CacheItemPool.php"/> | ||
</errorLevel> | ||
</PossiblyUndefinedVariable> | ||
|
||
<PossiblyUndefinedStringArrayOffset> | ||
<errorLevel type="suppress"> | ||
<file name="src/LoggableStorage.php"/> | ||
</errorLevel> | ||
</PossiblyUndefinedStringArrayOffset> | ||
|
||
<UndefinedClass> | ||
<errorLevel type="suppress"> | ||
<file name="src/AdapterFactory.php"/> | ||
</errorLevel> | ||
</UndefinedClass> | ||
|
||
<InvalidLiteralArgument> | ||
<errorLevel type="suppress"> | ||
<file name="src/AdapterFactory.php"/> | ||
</errorLevel> | ||
</InvalidLiteralArgument> | ||
|
||
<RedundantCondition> | ||
<errorLevel type="suppress"> | ||
<file name="src/FastCache.php"/> | ||
</errorLevel> | ||
</RedundantCondition> | ||
</issueHandlers> | ||
</psalm> | ||
<?xml version="1.0"?> | ||
<psalm xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns="https://getpsalm.org/schema/config" | ||
name="Psalm for PHP Library Starter" | ||
useDocblockTypes="true" | ||
errorLevel="7" | ||
strictBinaryOperands="false" | ||
rememberPropertyAssignmentsAfterCall="true" | ||
checkForThrowsDocblock="false" | ||
throwExceptionOnError="0" | ||
ensureArrayStringOffsetsExist="true" | ||
ensureArrayIntOffsetsExist="false" | ||
resolveFromConfigFile="true" | ||
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd" | ||
> | ||
<projectFiles> | ||
<directory name="src"/> | ||
<ignoreFiles> | ||
<directory name="vendor"/> | ||
</ignoreFiles> | ||
</projectFiles> | ||
|
||
<issueHandlers> | ||
<UndefinedClass> | ||
<errorLevel type="suppress"> | ||
<file name="src/AdapterFactory.php"/> | ||
</errorLevel> | ||
</UndefinedClass> | ||
</issueHandlers> | ||
</psalm> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of Biurad opensource projects. | ||
* | ||
* PHP version 7.1 and above required | ||
* | ||
* @author Divine Niiquaye Ibok <divineibok@gmail.com> | ||
* @copyright 2019 Biurad Group (https://biurad.com/) | ||
* @license https://opensource.org/licenses/BSD-3-Clause License | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Biurad\Cache\Tests; | ||
|
||
use Biurad\Cache\FastCache; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class FastCacheTest extends TestCase | ||
{ | ||
} | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of Biurad opensource projects. | ||
* | ||
* PHP version 7.1 and above required | ||
* | ||
* @author Divine Niiquaye Ibok <divineibok@gmail.com> | ||
* @copyright 2019 Biurad Group (https://biurad.com/) | ||
* @license https://opensource.org/licenses/BSD-3-Clause License | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Biurad\Cache\Tests; | ||
|
||
use Biurad\Cache\FastCache; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class FastCacheTest extends TestCase | ||
{ | ||
} |