From 8572311bf4022aa445d2ff398f9a0bd94c781492 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 21 Aug 2023 14:57:13 +0100 Subject: [PATCH] Remove dead PHPStan stub closes #6003 --- phpstan.neon.dist | 1 - tests/phpstan/stubs/phpasn1.stub | 22 ---------------------- 2 files changed, 23 deletions(-) delete mode 100644 tests/phpstan/stubs/phpasn1.stub diff --git a/phpstan.neon.dist b/phpstan.neon.dist index 1d72511f7..581bf41ec 100644 --- a/phpstan.neon.dist +++ b/phpstan.neon.dist @@ -44,7 +44,6 @@ parameters: stubFiles: - tests/phpstan/stubs/JsonMapper.stub - tests/phpstan/stubs/leveldb.stub - - tests/phpstan/stubs/phpasn1.stub - tests/phpstan/stubs/pmmpthread.stub reportUnmatchedIgnoredErrors: false #no other way to silence platform-specific non-warnings staticReflectionClassNamePatterns: diff --git a/tests/phpstan/stubs/phpasn1.stub b/tests/phpstan/stubs/phpasn1.stub deleted file mode 100644 index b459289ef..000000000 --- a/tests/phpstan/stubs/phpasn1.stub +++ /dev/null @@ -1,22 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace FG\ASN1\Universal; - -class Integer -{ - /** - * @param int|string $value - */ - public function __construct($value){} - - /** @return int|string */ - public function getContent(){} -}