From 42438c144c4b33540cdc518774e51273285db2c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sara=20Gfr=C3=B6rer?= Date: Sat, 24 Oct 2020 12:32:59 +0200 Subject: [PATCH 1/8] Declare strict types --- composer.json | 77 +++++++++++++---------- spec/Check/CountCheckSpec.php | 2 + spec/Check/NumericRangeCheckSpec.php | 2 + spec/CheckerSpec.php | 2 + spec/ResultSpec.php | 2 + spec/Type/AnyTypeSpec.php | 2 + spec/Type/BoolTypeSpec.php | 2 + spec/Type/DatetimeTypeSpec.php | 2 + spec/Type/EnumTypeSpec.php | 2 + spec/Type/ExactValueTypeSpec.php | 2 + spec/Type/FloatTypeSpec.php | 2 + spec/Type/IntTypeSpec.php | 2 + spec/Type/ListTypeSpec.php | 2 + spec/Type/NullableTypeSpec.php | 2 + spec/Type/NumericTypeSpec.php | 2 + spec/Type/ObjectTypeSpec.php | 2 + spec/Type/OptionalTypeSpec.php | 2 + spec/Type/RegexTypeSpec.php | 2 + spec/Type/StringTypeSpec.php | 2 + src/Check/CountCheck.php | 2 + src/Check/NumericRangeCheck.php | 2 + src/Checker.php | 2 + src/CheckerInterface.php | 2 + src/Error.php | 2 + src/ErrorInterface.php | 2 + src/Result.php | 2 + src/ResultInterface.php | 2 + src/Type/AnyType.php | 2 + src/Type/BoolType.php | 2 + src/Type/DatetimeType.php | 2 + src/Type/EnumType.php | 2 + src/Type/ExactValueType.php | 2 + src/Type/FloatType.php | 2 + src/Type/IntType.php | 2 + src/Type/ListType.php | 2 + src/Type/NullableType.php | 2 + src/Type/NumericType.php | 2 + src/Type/ObjectType.php | 2 + src/Type/OptionalType.php | 2 + src/Type/RegexType.php | 2 + src/Type/StringType.php | 2 + src/Type/TypeInterface.php | 2 + tests/Integration/Type/ObjectTypeTest.php | 2 + 43 files changed, 127 insertions(+), 34 deletions(-) diff --git a/composer.json b/composer.json index 5ff644f..e62ccb5 100644 --- a/composer.json +++ b/composer.json @@ -1,39 +1,48 @@ { - "name": "cubicl/php-structure-check", - "description": "Structural check of arrays for PHP 7.3+", - "keywords": ["array", "structure", "types"], - "homepage": "https://github.com/cubicldev/php-structure-check", - "type": "library", - "license": "MIT", - "authors": [ - { - "name": "Christian Blank", - "email": "christian@cubicl.de", - "homepage": "https://cubicl.de" - } + "name": "cubicl/php-structure-check", + "description": "Structural check of arrays for PHP 7.3+", + "keywords": [ + "array", + "structure", + "types" + ], + "homepage": "https://github.com/cubicldev/php-structure-check", + "type": "library", + "license": "MIT", + "authors": [ + { + "name": "Christian Blank", + "email": "christian@cubicl.de", + "homepage": "https://cubicl.de" + } + ], + "scripts": { + "check": [ + "@analyze", + "@tests", + "@tests-spec" ], - "scripts": { - "check": ["@analyze", "@tests", "@tests-spec"], - "tests": "phpunit tests", - "analyze": "phpstan analyse --level max src", - "tests-spec": "phpspec run --no-interaction" - }, - "require-dev": { - "phpspec/phpspec": "^6.2", - "phpunit/phpunit": "^9.3", - "phpstan/phpstan": "^0.12" - }, - "autoload": { - "psr-4": { - "Cubicl\\StructureCheck\\": [ - "src" - ], - "Cubicl\\StructureCheck\\Test\\": [ - "tests" - ] - } - }, + "tests": "phpunit tests", + "analyze": "phpstan analyse --level max src", + "tests-spec": "phpspec run --no-interaction" + }, + "require-dev": { + "phpspec/phpspec": "^6.2", + "phpunit/phpunit": "^9.3", + "phpstan/phpstan": "^0.12" + }, + "autoload": { + "psr-4": { + "Cubicl\\StructureCheck\\": [ + "src" + ], + "Cubicl\\StructureCheck\\Test\\": [ + "tests" + ] + } + }, "require": { - "ext-json": "*" + "ext-json": "*", + "php": "^7.4" } } diff --git a/spec/Check/CountCheckSpec.php b/spec/Check/CountCheckSpec.php index dd36f12..6a53485 100644 --- a/spec/Check/CountCheckSpec.php +++ b/spec/Check/CountCheckSpec.php @@ -1,5 +1,7 @@ Date: Sat, 24 Oct 2020 13:52:07 +0200 Subject: [PATCH 2/8] Typehinting --- src/Check/CountCheck.php | 3 +++ src/Check/NumericRangeCheck.php | 3 +++ src/Checker.php | 2 +- src/CheckerInterface.php | 3 --- src/Result.php | 27 +++++------------------ src/ResultInterface.php | 3 +-- src/Type/AnyType.php | 2 +- src/Type/BoolType.php | 3 +++ src/Type/DatetimeType.php | 4 +++- src/Type/EnumType.php | 2 -- src/Type/ExactValueType.php | 3 +++ src/Type/FloatType.php | 3 +++ src/Type/IntType.php | 3 +++ src/Type/ListType.php | 4 +++- src/Type/NullableType.php | 3 +++ src/Type/NumericType.php | 3 +++ src/Type/ObjectType.php | 1 - src/Type/OptionalType.php | 3 +++ src/Type/RegexType.php | 3 +++ src/Type/StringType.php | 3 +++ src/Type/TypeInterface.php | 5 +---- tests/Integration/Type/ObjectTypeTest.php | 8 +------ 22 files changed, 50 insertions(+), 44 deletions(-) diff --git a/src/Check/CountCheck.php b/src/Check/CountCheck.php index 6b629d6..23b713c 100644 --- a/src/Check/CountCheck.php +++ b/src/Check/CountCheck.php @@ -26,6 +26,9 @@ public function __construct(TypeInterface $child, int $count) $this->count = $count; } + /** + * @param mixed $value + */ public function check(string $key, $value): ResultInterface { $result = $this->child->check($key, $value); diff --git a/src/Check/NumericRangeCheck.php b/src/Check/NumericRangeCheck.php index 581ccee..b8c0a5d 100644 --- a/src/Check/NumericRangeCheck.php +++ b/src/Check/NumericRangeCheck.php @@ -43,6 +43,9 @@ public function __construct(TypeInterface $child, int $upperBound, int $lowerBou $this->lowerBound = $lowerBound; } + /** + * @param mixed $value + */ public function check(string $key, $value): ResultInterface { $result = $this->child->check($key, $value); diff --git a/src/Checker.php b/src/Checker.php index 0455a7f..d884ffc 100644 --- a/src/Checker.php +++ b/src/Checker.php @@ -9,7 +9,7 @@ class Checker implements CheckerInterface { /** - * @inheritdoc + * @param mixed $element */ public function fulfills($element, TypeInterface $requirement): ResultInterface { diff --git a/src/CheckerInterface.php b/src/CheckerInterface.php index 5e93e3b..e6ecc55 100644 --- a/src/CheckerInterface.php +++ b/src/CheckerInterface.php @@ -10,9 +10,6 @@ interface CheckerInterface { /** * @param mixed $element the element which should be tested - * @param TypeInterface $requirement - * - * @return ResultInterface */ public function fulfills($element, TypeInterface $requirement): ResultInterface; } diff --git a/src/Result.php b/src/Result.php index b06ef5a..288baa5 100644 --- a/src/Result.php +++ b/src/Result.php @@ -6,24 +6,17 @@ class Result implements ResultInterface { + private bool $valid; /** - * @var bool + * @var array */ - private $valid; + private array $errors; /** - * @var ErrorInterface[] + * @param array $errors */ - private $errors; - - /** - * Result constructor. - * - * @param bool $valid - * @param ErrorInterface[] $errors - */ - public function __construct($valid, array $errors) + public function __construct(bool $valid, array $errors) { $this->valid = $valid; $this->errors = $errors; @@ -35,26 +28,18 @@ public static function valid(): ResultInterface } /** - * @param ErrorInterface[] $errors - * - * @return ResultInterface + * @param array $errors */ public static function invalid(array $errors): ResultInterface { return new self(false, $errors); } - /** - * @inheritdoc - */ public function isValid(): bool { return $this->valid; } - /** - * @inheritdoc - */ public function getErrors(): array { return $this->errors; diff --git a/src/ResultInterface.php b/src/ResultInterface.php index 496a2d4..17eabde 100644 --- a/src/ResultInterface.php +++ b/src/ResultInterface.php @@ -5,7 +5,6 @@ namespace Cubicl\StructureCheck; /** - * * @package Cubicl\StructureCheck */ interface ResultInterface @@ -18,7 +17,7 @@ public function isValid(): bool; /** * Returns a list of errors. If no error occurred, it will return an empty array. * - * @return ErrorInterface[] + * @return array */ public function getErrors(): array; } diff --git a/src/Type/AnyType.php b/src/Type/AnyType.php index d5a2901..dead1db 100644 --- a/src/Type/AnyType.php +++ b/src/Type/AnyType.php @@ -10,7 +10,7 @@ class AnyType implements TypeInterface { /** - * @inheritdoc + * @param mixed $value */ public function check(string $key, $value): ResultInterface { diff --git a/src/Type/BoolType.php b/src/Type/BoolType.php index d935b29..1f1723f 100644 --- a/src/Type/BoolType.php +++ b/src/Type/BoolType.php @@ -12,6 +12,9 @@ class BoolType implements TypeInterface { private static string $errorMessage = 'The value %s is not a boolean.'; + /** + * @param mixed $value + */ public function check(string $key, $value): ResultInterface { $checkResult = is_bool($value); diff --git a/src/Type/DatetimeType.php b/src/Type/DatetimeType.php index 55cf374..d47b623 100644 --- a/src/Type/DatetimeType.php +++ b/src/Type/DatetimeType.php @@ -9,7 +9,6 @@ use DateTimeZone; use Cubicl\StructureCheck\Result; use Cubicl\StructureCheck\ResultInterface; -use JsonException; class DatetimeType implements TypeInterface { @@ -25,6 +24,9 @@ public function __construct(string $format, string $datetimeZone) $this->datetimeZone = $datetimeZone; } + /** + * @param mixed $value + */ public function check(string $key, $value): ResultInterface { $checkResult = is_string($value) && $this->isValidDatetime($value); diff --git a/src/Type/EnumType.php b/src/Type/EnumType.php index 80d2e3e..064e502 100644 --- a/src/Type/EnumType.php +++ b/src/Type/EnumType.php @@ -29,8 +29,6 @@ public function __construct(array $values) /** * @param string $key * @param T $value - * - * @return ResultInterface */ public function check(string $key, $value): ResultInterface { diff --git a/src/Type/ExactValueType.php b/src/Type/ExactValueType.php index 36d03cb..597cb92 100644 --- a/src/Type/ExactValueType.php +++ b/src/Type/ExactValueType.php @@ -23,6 +23,9 @@ public function __construct($value) $this->value = $value; } + /** + * @param mixed $value + */ public function check(string $key, $value): ResultInterface { $checkResult = $this->value === $value; diff --git a/src/Type/FloatType.php b/src/Type/FloatType.php index 80aec7a..fe97e88 100644 --- a/src/Type/FloatType.php +++ b/src/Type/FloatType.php @@ -12,6 +12,9 @@ class FloatType implements TypeInterface { private static string $errorMessage = 'The value %s is not a float.'; + /** + * @param mixed $value + */ public function check(string $key, $value): ResultInterface { $checkResult = is_float($value); diff --git a/src/Type/IntType.php b/src/Type/IntType.php index 9dd3f59..dccd65e 100644 --- a/src/Type/IntType.php +++ b/src/Type/IntType.php @@ -12,6 +12,9 @@ class IntType implements TypeInterface { private static string $errorMessage = 'The value %s is not an integer.'; + /** + * @param mixed $value + */ public function check(string $key, $value): ResultInterface { $checkResult = is_int($value); diff --git a/src/Type/ListType.php b/src/Type/ListType.php index 1badf9c..35ca7c9 100644 --- a/src/Type/ListType.php +++ b/src/Type/ListType.php @@ -19,6 +19,9 @@ public function __construct(TypeInterface $child) $this->child = $child; } + /** + * @param mixed $value + */ public function check(string $key, $value): ResultInterface { if (!is_array($value)) { @@ -40,6 +43,5 @@ public function check(string $key, $value): ResultInterface return $valid ? Result::valid() : Result::invalid($errors); - } } diff --git a/src/Type/NullableType.php b/src/Type/NullableType.php index 56b8a97..34fa79a 100644 --- a/src/Type/NullableType.php +++ b/src/Type/NullableType.php @@ -16,6 +16,9 @@ public function __construct(TypeInterface $child) $this->child = $child; } + /** + * @param mixed $value + */ public function check(string $key, $value): ResultInterface { if($value === null) { diff --git a/src/Type/NumericType.php b/src/Type/NumericType.php index 96a24da..fba3de9 100644 --- a/src/Type/NumericType.php +++ b/src/Type/NumericType.php @@ -12,6 +12,9 @@ class NumericType implements TypeInterface { private static string $errorMessage = 'The value %s is not a numeric value.'; + /** + * @param mixed $value + */ public function check(string $key, $value): ResultInterface { $checkResult = is_numeric($value); diff --git a/src/Type/ObjectType.php b/src/Type/ObjectType.php index 3501bf5..35e9999 100644 --- a/src/Type/ObjectType.php +++ b/src/Type/ObjectType.php @@ -35,7 +35,6 @@ public function check(string $key, $value): ResultInterface $valid = false; $errors[] = new Error($fullKey, sprintf(self::$missingKeyErrorMessage, $objectProperty)); } - continue; } diff --git a/src/Type/OptionalType.php b/src/Type/OptionalType.php index 91cb0b8..eb9ce12 100644 --- a/src/Type/OptionalType.php +++ b/src/Type/OptionalType.php @@ -15,6 +15,9 @@ public function __construct(TypeInterface $child) $this->child = $child; } + /** + * @param mixed $value + */ public function check(string $key, $value): ResultInterface { return $this->child->check($key, $value); diff --git a/src/Type/RegexType.php b/src/Type/RegexType.php index 7471246..f882947 100644 --- a/src/Type/RegexType.php +++ b/src/Type/RegexType.php @@ -19,6 +19,9 @@ public function __construct(string $regex) $this->regex = $regex; } + /** + * @param mixed $value + */ public function check(string $key, $value): ResultInterface { $checkResult = is_string($value) && preg_match($this->regex, $value) === 1; diff --git a/src/Type/StringType.php b/src/Type/StringType.php index 7fcb4ca..b3cbe66 100644 --- a/src/Type/StringType.php +++ b/src/Type/StringType.php @@ -12,6 +12,9 @@ class StringType implements TypeInterface { private static string $errorMessage = 'The value %s is not a string.'; + /** + * @param mixed $value + */ public function check(string $key, $value): ResultInterface { $checkResult = is_string($value); diff --git a/src/Type/TypeInterface.php b/src/Type/TypeInterface.php index 2d338e1..5c06b16 100644 --- a/src/Type/TypeInterface.php +++ b/src/Type/TypeInterface.php @@ -9,10 +9,7 @@ interface TypeInterface { /** - * @param string $key - * @param mixed $value - * - * @return ResultInterface + * @param mixed $value */ public function check(string $key, $value): ResultInterface; } diff --git a/tests/Integration/Type/ObjectTypeTest.php b/tests/Integration/Type/ObjectTypeTest.php index 889daae..2028624 100644 --- a/tests/Integration/Type/ObjectTypeTest.php +++ b/tests/Integration/Type/ObjectTypeTest.php @@ -18,14 +18,8 @@ */ class ObjectTypeTest extends TestCase { - /** - * @var CheckerInterface - */ - private $checker; + private CheckerInterface $checker; - /** - * - */ protected function setUp(): void { parent::setUp(); From 42a47bff6fcafde5d974ef41d3070e2fa4938c85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sara=20Gfr=C3=B6rer?= Date: Sat, 24 Oct 2020 14:46:09 +0200 Subject: [PATCH 3/8] Remove redundant docbloc --- src/Check/CountCheck.php | 3 --- src/Check/NumericRangeCheck.php | 3 --- src/Checker.php | 3 --- src/Type/AnyType.php | 3 --- src/Type/BoolType.php | 3 --- src/Type/DatetimeType.php | 3 --- src/Type/ExactValueType.php | 3 --- src/Type/FloatType.php | 3 --- src/Type/IntType.php | 3 --- src/Type/ListType.php | 3 --- src/Type/NullableType.php | 3 --- src/Type/NumericType.php | 3 --- src/Type/OptionalType.php | 3 --- src/Type/RegexType.php | 3 --- src/Type/StringType.php | 3 --- 15 files changed, 45 deletions(-) diff --git a/src/Check/CountCheck.php b/src/Check/CountCheck.php index 23b713c..6b629d6 100644 --- a/src/Check/CountCheck.php +++ b/src/Check/CountCheck.php @@ -26,9 +26,6 @@ public function __construct(TypeInterface $child, int $count) $this->count = $count; } - /** - * @param mixed $value - */ public function check(string $key, $value): ResultInterface { $result = $this->child->check($key, $value); diff --git a/src/Check/NumericRangeCheck.php b/src/Check/NumericRangeCheck.php index b8c0a5d..581ccee 100644 --- a/src/Check/NumericRangeCheck.php +++ b/src/Check/NumericRangeCheck.php @@ -43,9 +43,6 @@ public function __construct(TypeInterface $child, int $upperBound, int $lowerBou $this->lowerBound = $lowerBound; } - /** - * @param mixed $value - */ public function check(string $key, $value): ResultInterface { $result = $this->child->check($key, $value); diff --git a/src/Checker.php b/src/Checker.php index d884ffc..9f06034 100644 --- a/src/Checker.php +++ b/src/Checker.php @@ -8,9 +8,6 @@ class Checker implements CheckerInterface { - /** - * @param mixed $element - */ public function fulfills($element, TypeInterface $requirement): ResultInterface { return $requirement->check('', $element); diff --git a/src/Type/AnyType.php b/src/Type/AnyType.php index dead1db..aecd21b 100644 --- a/src/Type/AnyType.php +++ b/src/Type/AnyType.php @@ -9,9 +9,6 @@ class AnyType implements TypeInterface { - /** - * @param mixed $value - */ public function check(string $key, $value): ResultInterface { return Result::valid(); diff --git a/src/Type/BoolType.php b/src/Type/BoolType.php index 1f1723f..d935b29 100644 --- a/src/Type/BoolType.php +++ b/src/Type/BoolType.php @@ -12,9 +12,6 @@ class BoolType implements TypeInterface { private static string $errorMessage = 'The value %s is not a boolean.'; - /** - * @param mixed $value - */ public function check(string $key, $value): ResultInterface { $checkResult = is_bool($value); diff --git a/src/Type/DatetimeType.php b/src/Type/DatetimeType.php index d47b623..789b2b7 100644 --- a/src/Type/DatetimeType.php +++ b/src/Type/DatetimeType.php @@ -24,9 +24,6 @@ public function __construct(string $format, string $datetimeZone) $this->datetimeZone = $datetimeZone; } - /** - * @param mixed $value - */ public function check(string $key, $value): ResultInterface { $checkResult = is_string($value) && $this->isValidDatetime($value); diff --git a/src/Type/ExactValueType.php b/src/Type/ExactValueType.php index 597cb92..36d03cb 100644 --- a/src/Type/ExactValueType.php +++ b/src/Type/ExactValueType.php @@ -23,9 +23,6 @@ public function __construct($value) $this->value = $value; } - /** - * @param mixed $value - */ public function check(string $key, $value): ResultInterface { $checkResult = $this->value === $value; diff --git a/src/Type/FloatType.php b/src/Type/FloatType.php index fe97e88..80aec7a 100644 --- a/src/Type/FloatType.php +++ b/src/Type/FloatType.php @@ -12,9 +12,6 @@ class FloatType implements TypeInterface { private static string $errorMessage = 'The value %s is not a float.'; - /** - * @param mixed $value - */ public function check(string $key, $value): ResultInterface { $checkResult = is_float($value); diff --git a/src/Type/IntType.php b/src/Type/IntType.php index dccd65e..9dd3f59 100644 --- a/src/Type/IntType.php +++ b/src/Type/IntType.php @@ -12,9 +12,6 @@ class IntType implements TypeInterface { private static string $errorMessage = 'The value %s is not an integer.'; - /** - * @param mixed $value - */ public function check(string $key, $value): ResultInterface { $checkResult = is_int($value); diff --git a/src/Type/ListType.php b/src/Type/ListType.php index 35ca7c9..4221461 100644 --- a/src/Type/ListType.php +++ b/src/Type/ListType.php @@ -19,9 +19,6 @@ public function __construct(TypeInterface $child) $this->child = $child; } - /** - * @param mixed $value - */ public function check(string $key, $value): ResultInterface { if (!is_array($value)) { diff --git a/src/Type/NullableType.php b/src/Type/NullableType.php index 34fa79a..56b8a97 100644 --- a/src/Type/NullableType.php +++ b/src/Type/NullableType.php @@ -16,9 +16,6 @@ public function __construct(TypeInterface $child) $this->child = $child; } - /** - * @param mixed $value - */ public function check(string $key, $value): ResultInterface { if($value === null) { diff --git a/src/Type/NumericType.php b/src/Type/NumericType.php index fba3de9..96a24da 100644 --- a/src/Type/NumericType.php +++ b/src/Type/NumericType.php @@ -12,9 +12,6 @@ class NumericType implements TypeInterface { private static string $errorMessage = 'The value %s is not a numeric value.'; - /** - * @param mixed $value - */ public function check(string $key, $value): ResultInterface { $checkResult = is_numeric($value); diff --git a/src/Type/OptionalType.php b/src/Type/OptionalType.php index eb9ce12..91cb0b8 100644 --- a/src/Type/OptionalType.php +++ b/src/Type/OptionalType.php @@ -15,9 +15,6 @@ public function __construct(TypeInterface $child) $this->child = $child; } - /** - * @param mixed $value - */ public function check(string $key, $value): ResultInterface { return $this->child->check($key, $value); diff --git a/src/Type/RegexType.php b/src/Type/RegexType.php index f882947..7471246 100644 --- a/src/Type/RegexType.php +++ b/src/Type/RegexType.php @@ -19,9 +19,6 @@ public function __construct(string $regex) $this->regex = $regex; } - /** - * @param mixed $value - */ public function check(string $key, $value): ResultInterface { $checkResult = is_string($value) && preg_match($this->regex, $value) === 1; diff --git a/src/Type/StringType.php b/src/Type/StringType.php index b3cbe66..7fcb4ca 100644 --- a/src/Type/StringType.php +++ b/src/Type/StringType.php @@ -12,9 +12,6 @@ class StringType implements TypeInterface { private static string $errorMessage = 'The value %s is not a string.'; - /** - * @param mixed $value - */ public function check(string $key, $value): ResultInterface { $checkResult = is_string($value); From 6a5040e67a815ed5f70919ed2085060de798b185 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sara=20Gfr=C3=B6rer?= Date: Sat, 24 Oct 2020 14:55:44 +0200 Subject: [PATCH 4/8] Add phpstan -deprecated and -unit --- composer.json | 7 +- ...0a4cddf31df8af174ad17be8dc3b09175dc73f.php | 6 + ...67eef7caa776617b55a580402020ecc32d9a07.php | 13 + ...6f4d6560dcf9f7aefbcdd3132d0730b737fce3.php | 6 + ...ca84e5b6f3e4b22ae20bc4300cb0e203a7b7f4.php | 13 + ...62b2883ce7042964b9139cdb9d903f2bd674d2.php | 13 + ...9dfb281d3410a16432fd2a256fe58d1414348f.php | 32 + ...b7a2a3e5056cd3e0c4df8dee8aaf587c9db207.php | 7 + ...9f575d514a669670e89f7af2cb19cfaf5ce0d1.php | 6 + ...a2193f7af66062cc312f781115c60e2ae203e8.php | 13 + ...d864fd06c484549ae2f82f51eb54c2a4477ee1.php | 13 + ...0fc590261c8efaa08151ed24abd20808f664eb.php | 6 + ...6bffd393d0ca1c70d57c8a1c1787a895a0996f.php | 6 + ...6cabf11024934dfbb7015b8e4b4791229fc579.php | 1005 +++ ...8b14374d2b72d3812f6176226ce1d2a8367e82.php | 6 + ...cb1720fd3cfffaaeec87b0a173a680d4097733.php | 29 + ...f0940f43b5f622f819512dd8c46d1472b549d8.php | 13 + ...0ca6f13fa2ee0cfccaa2cd0d752e72b7360192.php | 13 + ...8a4a95badc545a86733693d59175f77f5944f4.php | 6 + ...e26534d603e6c6f9628db80d83350442b9a1fd.php | 6 + ...f45682fbe8d6e04191767c1363cc64f4e7abaa.php | 6 + ...2be59f615a7db560c2bcb12a3357a94bbbada1.php | 6 + ...3dafc11b645c0fbc6b34d171ef40371f8e7ebc.php | 13 + ...747a8fdf09ab4777eb7d67cc52bff2d17cd784.php | 6 + ...e1452bb32fb5ef782e3b242cfea3674fd93b16.php | 13 + ...209d861d2409564384d2e4f41e119b1fec1d82.php | 6 + ...2715a5da745979feffe2d14c91785f25a6596b.php | 13 + ...4690126fcad20d59b0b8d5490d6289531dfaa0.php | 13 + ...866dd0220d2779d8d9615a8fc260920bffa07b.php | 6 + ...f7fd87ba6c17b79c09aff585809402189a7bf2.php | 6 + ...1c8fdc936455eaed81170cb41f773613fd8302.php | 6 + ...f495ba97114552ec359076767cf935b252b415.php | 6 + ...6730ede242df41aefe1fb81aefa2b733c69a34.php | 6 + ...c0bba8e80104e915c67a47e41e6ccd3db9e775.php | 6 + ...8d466ad5e8885af1903b1fe1cb1f36c817d1e1.php | 31 + ...028a8ecfb4fa0bf45ec7541fbd80ff7634a034.php | 6 + ...c401c263b224b9ca501a1a0401a2d22dfbb4dd.php | 6 + ...8d6f57871df4f4386119949f81614448e9d071.php | 6 + ...c584c6dba4696664fe4fa6318002eddf6f1590.php | 30 + ...c6a66faa4da5b038ea4bae0f0cbbbf5af332a7.php | 6 + ...8753dd552f0d66eb99b8cfc191f2521ac04758.php | 6 + ...c0d800926232616d8c84ea5e7b7e5a581eb9fa.php | 160 + ...d8630041d3d6e11e5f22f0021d9ec45b4d28e0.php | 6 + ...a7442a86f1add9f063f537221fc42a27aefbf3.php | 6 + ...d92d256fac6b068b605a5a15043d4a4fa32baa.php | 6 + ...ed3132f4311288c6435765e82b9da62d91fd03.php | 6 + ...12cbe97f9eb536b2153c10adc7133e676a45b0.php | 9 + ...269e485984ddc55f3962b7479e31b1b9f2d8d9.php | 6 + ...2f3bb1f35f58a1472e2db20e169921422513ff.php | 13 + ...3e73199710ae5c17113eb6677d189c815767be.php | 6 + ...9ae067cd96c4393ffd0adce50e1f523be8bab5.php | 6 + ...6046ac822d7a59a7c50279aa61a17b8f7fde8d.php | 31 + ...a4236008d14b2699263a18271c5ccd8b633f9b.php | 741 ++ ...f5fec45d4b32f3210ea2d26ada80cce97bf93a.php | 32 + ...cbab2a0375cfe7eab5f365201a0ff6bd379f52.php | 6 + ...574fdc7ea28d1d204545e2388b5127aae5afa5.php | 6 + ...e2585f41ebe98e95c23da14cc321a0e47b0a39.php | 13 + ...045ba278fa9b1c1e65799631956e11d71b7594.php | 6 + ...7d6413d19f39beb6600348ff66de7ea6093239.php | 6 + ...952c875187cfceaa9d45d804265a237e4d30ab.php | 6 + ...26b31a78a21b4213843359a4f95e68bf222ed5.php | 6 + ...d6be0cf227d5a9f6426dee54d0a4b47727af5f.php | 13 + ...ce094bf24aa8bbe2c88b7f72201a06e42b58b4.php | 6 + ...d391c6764f72d0ee5973f27e876cf4100b36f4.php | 13 + ...f8a9f3d5ffa98ae51a052d21766469fdd9808a.php | 6 + ...4c31ff1e0bcac52251686abedbaa3f6c3ae48f.php | 32 + ...5148cb1ef15a911b9002deb99f629a5db739c1.php | 6 + ...06ae5d4f407633e6d3dfac02e55c8d3c749459.php | 6 + ...93abb322bb5b82328469fcd6a02d65e457268e.php | 7 + ...b12de1771107cc9ca76b4c7d24c932c2736042.php | 8 + ...147dd866c209e91dbc46d4e561032066b4a0d5.php | 6 + ...7e02e9be318a9f35c04e46dc4dbffbf8ccb17d.php | 6 + ...a58eeb7f10f67a184179d1466630a60f8aecb6.php | 13 + ...39238fece5b6278e8e7af6750583bc76434652.php | 6 + ...c3560819bea06d90a35212f02de53c8f2bdae0.php | 6 + ...ef13d6e0c3b5230b07e99478a35bf90d96fdb3.php | 6 + ...e44b3598547d4127fc54031158e98a8ae4f0a7.php | 6 + ...7d88391f44783895cc8b2741453cefda6df773.php | 13 + ...53c8b2172a850d44a9a01321703b1a5f27ec7f.php | 6 + ...7b0341d7238064b7f8305fc1f461812e25e167.php | 6 + ...4869047918fb5c9b4c7f4915cf28ff0fe10ac8.php | 13 + ...ebaeecbbd42ba1d6b9e020ca91142c6bbacbe0.php | 13 + ...f06084fdfece61c3a5af96a3364bedeb0aba1a.php | 30 + ...158ee3293381ad62441275b33d993778d46c6b.php | 2616 +++++++ ...a55303eb4383b4972327850baa0ef95f5535d1.php | 6 + ...88ee9cc55e2b648aaa0e960674f308ff739021.php | 6 + ...8ac8f366324dd4516472648d0feeac252da359.php | 6 + ...42470e033ff705c8b1d4aa8421fb95aa11b941.php | 6 + ...bd91565acae82ef9da478282d206afaecfc78e.php | 13 + ...636871a21ea8552b7fc5a2b6dfb83c01abd4ee.php | 13 + ...d5b6375d303cbbee2191f82481a5024c35e8c1.php | 6 + ...504eb552d53690174ac1c244e70def1c4a519c.php | 6 + ...d08327722c115693abc214b37f6c297bc06973.php | 6 + ...7fe2c394249eac081113239bda2b234b4933d5.php | 6 + ...9fbd95fa73e1dad9d302fd2a99bb498a848813.php | 6 + ...cd11cdaf0d586304d4fb9408b6c852a7774323.php | 6 + ...9a35bd18677c1cd33d0775b986386e0a71a485.php | 6 + ...4db524da18419d33dda566d697c95eb69cd5f4.php | 6 + ...2bba4a3aac760f30e94bb9266bacd81731ad38.php | 6 + ...0010dbdc436ad8538cc17b11abfc09c73d8527.php | 30 + ...1537931e86fa1e2ea57ede55e2c46bc5904a68.php | 6 + ...f89acb3595aded60526f7c1f6e46ec6b0cbea1.php | 6 + ...4f0b76ae82233de7d2cb609788ad8dfddbd785.php | 6 + ...8cfc246e0d2c772fc507c7b1d7207008e09aac.php | 6 + ...bfccb2ac6c5e9a63fa5dc89d03813a7f231d0a.php | 13 + ...ce88e1823b7729279fd11260e89552c1d1631a.php | 108 + ...ea51c88531a34a34dd40c07f58616739e61e93.php | 6 + ...c1fd09925ae5da108652ffc9b2571cbefa3b7f.php | 6 + ...e38b95d4f4c96348ba5469e1d1f16f2d322105.php | 6 + ...2185cb8f6995eca3329243ec3074789d6d781f.php | 30 + ...36b34313b827e4328c7c69a9c6bd4b47550424.php | 6 + ...3ca551e84c3340002433aaa719246256f977ee.php | 6 + ...3f161ef2cff05433fe0fa66434804729cbee5e.php | 32 + ...3d3a5f39b3b808eb21f3ce746a28d3c747b349.php | 6 + ...2972b24f56972fa36c68437f8d3d171bf0e46a.php | 6 + ...333087a45d8a173b7f49b089294acef0dfc197.php | 32 + ...d43aad9174c1cdff50ac48d1bd2de591de1f9d.php | 6 + ...15fba9194d37a1a8345ca001cdb6b28bb6f731.php | 6 + ...42542855a281cdf1f25377c004a3890283b341.php | 6 + ...79ffe2d2f3ecb120cd95b4e6a001ff49a9b8a9.php | 6 + ...8b3cb8c0068a29931b3c822341635d890e6bf6.php | 6 + ...c03826a59b48f92204bbd8eecfed6a12c5e000.php | 6 + ...5230f08d0b56c8dc7b5013fd99bc6803157557.php | 6 + ...a1277046ed068f2da8cc94a7e2dec91b057084.php | 6 + ...20ecbd4ec9fde96a2c2e25b28ed6ec4d0f15bd.php | 6 + ...c4755066ea86cd86d7faa0ef0f0d56ae91e46b.php | 6 + ...1c3d4d386e56fb4486a139d3b0d66b4383f4ca.php | 6 + ...3cbb9b71ac0eaf58c95099dc2e81446cb31f94.php | 6 + ...a5cc4d76d7d8ba8967263de2868a1728aa9ab9.php | 8 + ...bcb06e060c26add0ee5d64b4f63f6b33433a2a.php | 6 + ...f4e82417388bd2999bc768958db49a6f516dfc.php | 13 + ...1d42dec1afa1e492f155878b516acf6613aa2e.php | 6 + ...467eca4e1377dc3b4d86c36144246e9cb8b4ee.php | 6 + ...ca279b3804f1daf686f6f76d2a25f318524bec.php | 13 + ...b9314965265f5a1122f840669bfbe4f815294d.php | 6 + ...a8eb8185e71136ec60f992d88a19eaf0f9a089.php | 6 + ...d1ef5f696332f7218718288784f27e0f286ba5.php | 6 + ...0c12194fed67fe6e7c6b298e0d341fa4a87e8c.php | 13 + ...843a377e9989817a1bc3c8edd9a2d0d677b767.php | 6 + ...e61fa3def7b2ead509ed9d7224a95fc9207bb5.php | 32 + ...1215ef26faa0f89dc1c9dd3a0b11fcbf45d238.php | 6 + ...29ee94d04173906feeb415651642b72c9b0573.php | 6 + ...64a307066f3229a11c44d841d54483d91aa0d2.php | 6 + ...144ff1660969936adb3b5bf33e82d2c71ca780.php | 6 + ...ea0abfef2f2455b4c149887f949677e7ac123b.php | 6 + ...52dfb5dbc61c7bc8fb7f9e45095f503eb949d7.php | 6 + ...afd1f21dcf3d52c66aa1b3193e2b21694a3060.php | 32 + ...d46cd235492e48c382a2590b16fdc9d4cb4bd8.php | 6 + ...5a60b1571c4b7cd47aed2781241a0af9767e40.php | 8 + ...18d8a850184a6941a77f4b453f4cc70b5aca45.php | 13 + ...4509e411ee391fc6a619f7699250a9570d1ad6.php | 6 + ...66fb7f2622fb9235757ea1c3d8407fba7cc931.php | 6 + ...a4e330c772b11033ff19857bd1f7f22e3836bc.php | 6 + ...c58cab748b7bb3c1fa6545ab85504dae8f4c17.php | 6 + ...941c3dd1b837f591b2876a7290633465904ee8.php | 6 + ...f043fdc5174b4062aae4753981223dcdd3b52e.php | 154 + ...9d5209e697ad147161ee1e6e73939bf497560c.php | 6 + ...97685b4780c978746ad728f350d52e9efcb736.php | 13 + ...f4cc125f6cb838326d89caa338a257f98583e8.php | 6 + ...2c99e7244200793d5e8ea15abf2faf88c1bf6b.php | 6 + ...79a7d328929717a9165ade49d56af51d46abd5.php | 107 + ...9319bbf3575c6854b555884b624532b1992891.php | 6 + ...86829e0bde3898d90d45a214065ce6dd6d02ad.php | 426 ++ ...bde3d050ad46a4e4d4623912a61a7e3b994d4a.php | 6 + ...c186280446546a92fbcaccb9ca2da9a22da57b.php | 71 + ...fbc138e80195b07a3a3cf33010a201b217d832.php | 6 + ...a3e7a446b29da80fba3b93053440bc895f92b6.php | 6 + ...4c2cd9153df6a13c3fe1e7ad45ead2f44a25fc.php | 6 + ...e44407120181578ba38b9dbbc1e8f346304eab.php | 7 + ...2fd8ee64c0ee935739ec05367cd4bd3f065305.php | 6 + ...4c0a9cff4b7efc3f3b05beb7002974c13e9cbc.php | 6 + ...59d3203927f3b9004b1d1654c3d933fd8e69c6.php | 6 + ...9e86be5a38c0eedb84122ac3c4f850402fc526.php | 6 + ...40b03b682c63893633911aaf05d2b3112ab16e.php | 6 + ...ed5fffcd1dbd596fbde55df8ebda81ac34e4bb.php | 13 + ...1fa0ef32151fb3cde03802a4a53759e55d87df.php | 7 + ...980e646464aff1f9fe3a41ff3fc234d8829fe0.php | 13 + ...2a0395c2ded4d78188609959407adb820a5d70.php | 6 + ...68bd2d8dd0210910e3ae38c7be1d99ddc8c7dd.php | 268 + ...a884ea935adc56433b6395233888755dc8f0ee.php | 6 + ...7ea4aacc94d2b76c62131e7352712ee9ec34bc.php | 6 + ...70789801c10d90a66ee33c2e8caca85cf97289.php | 6 + ...0c1b97f67b232db03874f0b54ed6975802a2c0.php | 6 + ...1b23c4afc47a46121bb14a990e3d2f510b4409.php | 944 +++ ...47638c0f5b6604e459e8b26a76c0460fcf96c8.php | 6 + ...b8cdd78a2d8b6f362f19b55cbdbd58a4bffb77.php | 78 + ...dbdb57ee9fe8827341192ddd0a7b84b53981bf.php | 6 + ...b9fb049ce98c71152804ae143e2be343a18e4f.php | 13 + ...373a4ac29a22dce843d2aabc091196aee2fb7c.php | 6 + ...42806e3c50767db85e0e08f3fbec902e03c76a.php | 6 + ...8ac29c1a321f3966a1c2c5b0ced21fa50f1b06.php | 6 + ...3b871ad7aef06514cb36eeb7971605a44e32a2.php | 6 + ...d8069dba0a1e67e58db2439fc676faffa2bbe7.php | 6 + ...468d537e8981d09e6e6b5e9a84f0f5267c83a6.php | 13 + ...c3c16c3efee2aa4112997b19a88162d9273fd5.php | 13 + ...fc8598ade47c8f9ced34f6bb705b94aae73c96.php | 6 + ...57f151d9eee738b2a728cadd71a52d2af1a83c.php | 6 + ...e3dca32ad19ac12c2fe3c286e7cfd5b97a93c3.php | 13 + ...f51c8eaabcec054c2de5a4493332627a7e190b.php | 6 + ...45dfbbf41ccac63abd7024cde9758b704ab45e.php | 6 + ...47a23cd182eb7bec5721914695adb03053c094.php | 6 + ...8f5e5fb1ab91df44808ba9b1fbd3ebdf1d021c.php | 6 + ...2b559377237532e608f642cbc72e3309f1f2fa.php | 6 + ...e81fbc582defb6dd5dbd68543058765a3dff8b.php | 6 + ...37ea4ef287a9aa0e114b52a027b2efb5d8f3be.php | 6 + ...d2fe383718086c7fd58237ae26b25915459537.php | 6 + ...922562605ad2653aa5032f493c53c6c7e82ed0.php | 34 + ...e93f6dc26fab2f24f883eed87cf283d85255c8.php | 6 + ...6b08a745e113d3444ae8a7aebcf01d43b2b54b.php | 6 + ...90e2bebb5d378158c041037dc531dec0616f44.php | 34 + ...c7e15d15806f232958ca2745aaa89dda159192.php | 6 + ...3df6ee5044a0fb9003cad34d64f70e135e8c2a.php | 8 + ...c25e3685e0266e5464f4250be70d1eb1f61e02.php | 30 + ...e98a0407200523afcfc69c3258e8f0355399a0.php | 7 + ...7b640f7f737016134e37c80752e603b801bc16.php | 6 + ...a421c1ec9795196258ff6d5a5d167ed6817f8b.php | 6 + ...f3a128dd7dc46bd6f3a7dc119f8110dd1ced7f.php | 221 + ...8187c54df620f355446b2bc7cd3894125463d1.php | 6 + ...4b30a72a5e2ba85367918e894068d4d8ad93a2.php | 6 + ...e4d36311afa199a7ad1330e9863dcce72bb9d5.php | 6 + ...be786521a231a526b45d878f07f2214b1abaf6.php | 6 + ...07c7695ba5eb445ea5a7dcf6d406bead213429.php | 6 + ...71381da9e1fc3dfe6271e76cfc66ce8de8d815.php | 6 + ...5a12b2ff83257315e6a18922d11f8fea5fe72a.php | 2127 ++++++ ...f6b5ac15f6fa7012b3045cb7e68b009cfef69d.php | 6 + ...12241aafa86f3b0144cde635ff239c6fbebe89.php | 6 + ...8345230f80c9c457e5ef675579a4e8bb8f062d.php | 820 +++ ...c7894d2c3f31a89cbb701649ffdb29880305c3.php | 6 + ...d1cf91766bba92a19ba0f5f8ad32c56411dc23.php | 29 + ...4f1f1b679a04eb41dfed1d9eb8bd63495a3739.php | 6 + ...612a4104111b7f099f71a618f1e30a2b68fe04.php | 6 + ...6e6114bae224af917ef66aa644cbd3d2ad388d.php | 13 + ...0c41b7b7efaab03b8c58d20ab83fa2b47876f4.php | 6 + ...911c7c46b1b5fdf99e60f594bd1fa7b0de57f5.php | 13 + ...a91084a6fffc5ff8585f980e51b9c4f4af7a0b.php | 6 + ...35a6f2b8b307afb80055a2e8afbfc4be43623b.php | 7 + ...5b834cc67cb680840b8984056bd3aa642557a4.php | 13 + ...ad4a9d3067ff46a5f269031f7ab097a5d8d512.php | 6 + ...d19efd73efd622a0e33a448ab1edf31f57217d.php | 6 + ...c120293f83544841608b0b8244f1b466274780.php | 54 + ...e4b9bf1b90f7e353e74a4a2acb6d708b044aad.php | 73 + ...ffda35031533d5f3c3def47b1112fc85c90940.php | 6 + ...2afeaabe77653c97a35c740be56b13386484dd.php | 6 + ...c3951210468e1993eb63cab47a7b5b90900c58.php | 6 + ...41554384b393b6d9000a46e3db1e4a5ec223ec.php | 6 + ...a726c9b10a25c77ef8e287e3c5d2a17c2afc3e.php | 6086 +++++++++++++++++ ...d40f514e065d528e58310fc766719b31dda359.php | 6 + ...c553486b2485d247bd6bd0e3914b90c67a93e4.php | 50 + ...d64048576d3b4dd3c8a3c5bceb77330a26176f.php | 6 + ...c1632e349e087ae5a7c757d76a9ae1fb7c6acd.php | 6 + ...c3f42e60230db73c41ff5c2adf5539f3fa2f55.php | 6 + ...8a9585a205dbbed43edcc6315dc48aad0b624f.php | 6 + ...a26daa24ce442984a6a8ba6ba0030afa924c8b.php | 6 + ...3247bd7b1c1562ffe438dfe5907427243da65b.php | 6 + ...4ebb3b47f34e8ed39a6e2a65014583500d1d16.php | 6 + ...ceb39be3c5da139b626441971fd2099dcf1f6c.php | 6 + ...faed4e6fa23e59e4de957eaae032848e795a97.php | 6 + ...e5d6db7da71566297d73f5a1df212309c98e5c.php | 6 + ...1d130969b88d4bd9d39f8891e9cec990844008.php | 8 + ...77c9a005e659a453b0bc8b5041ef2a462a8015.php | 13 + ...cf66005f1f2acb717ffeac4774d1c041c59add.php | 6 + ...c5efd85deeb4d2d6a3f8e16cf1e8471d6364aa.php | 6 + ...b5d8770b219cfde9b57e0972632076180c0483.php | 6 + ...c69e39a3a4997e1aec459930c238ce0166f05f.php | 6 + ...89aed06f5659c1cd3a52f134da3b6c3e2d8647.php | 6 + ...95a19e30d9cc6991a7a2a70030e0b065aa3c24.php | 13 + ...371664a9c19e9d8b4a1c2b4e105cd6fd35f0c3.php | 6 + ...9a081e7346c5a2cda149dbaaeef2aea046a252.php | 13 + ...f2d3e743b6119918283d2ce2177a81d949b50c.php | 6 + ...24cd25dc973f55931bea8a8528ec94d3c94041.php | 6 + ...f8270bfe6983a1f413389b25714a94be6cbaaf.php | 30 + ...dcb17d80a93cfa22d6a6b6bcb7554780a3115e.php | 6 + ...c423010bc45eca703f6bc521b89cc82bfe0ff2.php | 13 + .../Container_0680f21d46.php | 5647 +++++++++++++++ .../Container_0680f21d46.php.lock | 0 .../Container_0680f21d46.php.meta | 1 + .../Container_e563100465.php | 5736 ++++++++++++++++ .../Container_e563100465.php.lock | 0 .../Container_e563100465.php.meta | 1 + data/resultCache.php | 2010 ++++++ phpstan.neon.dist | 8 + 281 files changed, 31812 insertions(+), 2 deletions(-) create mode 100644 data/cache/PHPStan/00/0a/000a4cddf31df8af174ad17be8dc3b09175dc73f.php create mode 100644 data/cache/PHPStan/00/67/0067eef7caa776617b55a580402020ecc32d9a07.php create mode 100644 data/cache/PHPStan/03/6f/036f4d6560dcf9f7aefbcdd3132d0730b737fce3.php create mode 100644 data/cache/PHPStan/03/ca/03ca84e5b6f3e4b22ae20bc4300cb0e203a7b7f4.php create mode 100644 data/cache/PHPStan/04/62/0462b2883ce7042964b9139cdb9d903f2bd674d2.php create mode 100644 data/cache/PHPStan/05/9d/059dfb281d3410a16432fd2a256fe58d1414348f.php create mode 100644 data/cache/PHPStan/05/b7/05b7a2a3e5056cd3e0c4df8dee8aaf587c9db207.php create mode 100644 data/cache/PHPStan/06/9f/069f575d514a669670e89f7af2cb19cfaf5ce0d1.php create mode 100644 data/cache/PHPStan/06/a2/06a2193f7af66062cc312f781115c60e2ae203e8.php create mode 100644 data/cache/PHPStan/06/d8/06d864fd06c484549ae2f82f51eb54c2a4477ee1.php create mode 100644 data/cache/PHPStan/07/0f/070fc590261c8efaa08151ed24abd20808f664eb.php create mode 100644 data/cache/PHPStan/07/6b/076bffd393d0ca1c70d57c8a1c1787a895a0996f.php create mode 100644 data/cache/PHPStan/07/6c/076cabf11024934dfbb7015b8e4b4791229fc579.php create mode 100644 data/cache/PHPStan/07/8b/078b14374d2b72d3812f6176226ce1d2a8367e82.php create mode 100644 data/cache/PHPStan/07/cb/07cb1720fd3cfffaaeec87b0a173a680d4097733.php create mode 100644 data/cache/PHPStan/07/f0/07f0940f43b5f622f819512dd8c46d1472b549d8.php create mode 100644 data/cache/PHPStan/08/0c/080ca6f13fa2ee0cfccaa2cd0d752e72b7360192.php create mode 100644 data/cache/PHPStan/09/8a/098a4a95badc545a86733693d59175f77f5944f4.php create mode 100644 data/cache/PHPStan/09/e2/09e26534d603e6c6f9628db80d83350442b9a1fd.php create mode 100644 data/cache/PHPStan/0a/f4/0af45682fbe8d6e04191767c1363cc64f4e7abaa.php create mode 100644 data/cache/PHPStan/0e/2b/0e2be59f615a7db560c2bcb12a3357a94bbbada1.php create mode 100644 data/cache/PHPStan/11/3d/113dafc11b645c0fbc6b34d171ef40371f8e7ebc.php create mode 100644 data/cache/PHPStan/11/74/11747a8fdf09ab4777eb7d67cc52bff2d17cd784.php create mode 100644 data/cache/PHPStan/12/e1/12e1452bb32fb5ef782e3b242cfea3674fd93b16.php create mode 100644 data/cache/PHPStan/17/20/17209d861d2409564384d2e4f41e119b1fec1d82.php create mode 100644 data/cache/PHPStan/19/27/192715a5da745979feffe2d14c91785f25a6596b.php create mode 100644 data/cache/PHPStan/1a/46/1a4690126fcad20d59b0b8d5490d6289531dfaa0.php create mode 100644 data/cache/PHPStan/1a/86/1a866dd0220d2779d8d9615a8fc260920bffa07b.php create mode 100644 data/cache/PHPStan/1a/f7/1af7fd87ba6c17b79c09aff585809402189a7bf2.php create mode 100644 data/cache/PHPStan/1b/1c/1b1c8fdc936455eaed81170cb41f773613fd8302.php create mode 100644 data/cache/PHPStan/1c/f4/1cf495ba97114552ec359076767cf935b252b415.php create mode 100644 data/cache/PHPStan/1d/67/1d6730ede242df41aefe1fb81aefa2b733c69a34.php create mode 100644 data/cache/PHPStan/1e/c0/1ec0bba8e80104e915c67a47e41e6ccd3db9e775.php create mode 100644 data/cache/PHPStan/1f/8d/1f8d466ad5e8885af1903b1fe1cb1f36c817d1e1.php create mode 100644 data/cache/PHPStan/20/02/20028a8ecfb4fa0bf45ec7541fbd80ff7634a034.php create mode 100644 data/cache/PHPStan/24/c4/24c401c263b224b9ca501a1a0401a2d22dfbb4dd.php create mode 100644 data/cache/PHPStan/26/8d/268d6f57871df4f4386119949f81614448e9d071.php create mode 100644 data/cache/PHPStan/27/c5/27c584c6dba4696664fe4fa6318002eddf6f1590.php create mode 100644 data/cache/PHPStan/27/c6/27c6a66faa4da5b038ea4bae0f0cbbbf5af332a7.php create mode 100644 data/cache/PHPStan/29/87/298753dd552f0d66eb99b8cfc191f2521ac04758.php create mode 100644 data/cache/PHPStan/29/c0/29c0d800926232616d8c84ea5e7b7e5a581eb9fa.php create mode 100644 data/cache/PHPStan/29/d8/29d8630041d3d6e11e5f22f0021d9ec45b4d28e0.php create mode 100644 data/cache/PHPStan/2d/a7/2da7442a86f1add9f063f537221fc42a27aefbf3.php create mode 100644 data/cache/PHPStan/2d/d9/2dd92d256fac6b068b605a5a15043d4a4fa32baa.php create mode 100644 data/cache/PHPStan/2d/ed/2ded3132f4311288c6435765e82b9da62d91fd03.php create mode 100644 data/cache/PHPStan/2e/12/2e12cbe97f9eb536b2153c10adc7133e676a45b0.php create mode 100644 data/cache/PHPStan/2e/26/2e269e485984ddc55f3962b7479e31b1b9f2d8d9.php create mode 100644 data/cache/PHPStan/2e/2f/2e2f3bb1f35f58a1472e2db20e169921422513ff.php create mode 100644 data/cache/PHPStan/2e/3e/2e3e73199710ae5c17113eb6677d189c815767be.php create mode 100644 data/cache/PHPStan/2e/9a/2e9ae067cd96c4393ffd0adce50e1f523be8bab5.php create mode 100644 data/cache/PHPStan/2f/60/2f6046ac822d7a59a7c50279aa61a17b8f7fde8d.php create mode 100644 data/cache/PHPStan/31/a4/31a4236008d14b2699263a18271c5ccd8b633f9b.php create mode 100644 data/cache/PHPStan/32/f5/32f5fec45d4b32f3210ea2d26ada80cce97bf93a.php create mode 100644 data/cache/PHPStan/33/cb/33cbab2a0375cfe7eab5f365201a0ff6bd379f52.php create mode 100644 data/cache/PHPStan/34/57/34574fdc7ea28d1d204545e2388b5127aae5afa5.php create mode 100644 data/cache/PHPStan/37/e2/37e2585f41ebe98e95c23da14cc321a0e47b0a39.php create mode 100644 data/cache/PHPStan/38/04/38045ba278fa9b1c1e65799631956e11d71b7594.php create mode 100644 data/cache/PHPStan/38/7d/387d6413d19f39beb6600348ff66de7ea6093239.php create mode 100644 data/cache/PHPStan/3c/95/3c952c875187cfceaa9d45d804265a237e4d30ab.php create mode 100644 data/cache/PHPStan/3e/26/3e26b31a78a21b4213843359a4f95e68bf222ed5.php create mode 100644 data/cache/PHPStan/40/d6/40d6be0cf227d5a9f6426dee54d0a4b47727af5f.php create mode 100644 data/cache/PHPStan/42/ce/42ce094bf24aa8bbe2c88b7f72201a06e42b58b4.php create mode 100644 data/cache/PHPStan/42/d3/42d391c6764f72d0ee5973f27e876cf4100b36f4.php create mode 100644 data/cache/PHPStan/42/f8/42f8a9f3d5ffa98ae51a052d21766469fdd9808a.php create mode 100644 data/cache/PHPStan/43/4c/434c31ff1e0bcac52251686abedbaa3f6c3ae48f.php create mode 100644 data/cache/PHPStan/43/51/435148cb1ef15a911b9002deb99f629a5db739c1.php create mode 100644 data/cache/PHPStan/44/06/4406ae5d4f407633e6d3dfac02e55c8d3c749459.php create mode 100644 data/cache/PHPStan/45/93/4593abb322bb5b82328469fcd6a02d65e457268e.php create mode 100644 data/cache/PHPStan/45/b1/45b12de1771107cc9ca76b4c7d24c932c2736042.php create mode 100644 data/cache/PHPStan/46/14/46147dd866c209e91dbc46d4e561032066b4a0d5.php create mode 100644 data/cache/PHPStan/46/7e/467e02e9be318a9f35c04e46dc4dbffbf8ccb17d.php create mode 100644 data/cache/PHPStan/46/a5/46a58eeb7f10f67a184179d1466630a60f8aecb6.php create mode 100644 data/cache/PHPStan/47/39/4739238fece5b6278e8e7af6750583bc76434652.php create mode 100644 data/cache/PHPStan/47/c3/47c3560819bea06d90a35212f02de53c8f2bdae0.php create mode 100644 data/cache/PHPStan/47/ef/47ef13d6e0c3b5230b07e99478a35bf90d96fdb3.php create mode 100644 data/cache/PHPStan/49/e4/49e44b3598547d4127fc54031158e98a8ae4f0a7.php create mode 100644 data/cache/PHPStan/4a/7d/4a7d88391f44783895cc8b2741453cefda6df773.php create mode 100644 data/cache/PHPStan/4c/53/4c53c8b2172a850d44a9a01321703b1a5f27ec7f.php create mode 100644 data/cache/PHPStan/4c/7b/4c7b0341d7238064b7f8305fc1f461812e25e167.php create mode 100644 data/cache/PHPStan/4e/48/4e4869047918fb5c9b4c7f4915cf28ff0fe10ac8.php create mode 100644 data/cache/PHPStan/52/eb/52ebaeecbbd42ba1d6b9e020ca91142c6bbacbe0.php create mode 100644 data/cache/PHPStan/52/f0/52f06084fdfece61c3a5af96a3364bedeb0aba1a.php create mode 100644 data/cache/PHPStan/53/15/53158ee3293381ad62441275b33d993778d46c6b.php create mode 100644 data/cache/PHPStan/53/a5/53a55303eb4383b4972327850baa0ef95f5535d1.php create mode 100644 data/cache/PHPStan/54/88/5488ee9cc55e2b648aaa0e960674f308ff739021.php create mode 100644 data/cache/PHPStan/54/8a/548ac8f366324dd4516472648d0feeac252da359.php create mode 100644 data/cache/PHPStan/55/42/5542470e033ff705c8b1d4aa8421fb95aa11b941.php create mode 100644 data/cache/PHPStan/56/bd/56bd91565acae82ef9da478282d206afaecfc78e.php create mode 100644 data/cache/PHPStan/57/63/57636871a21ea8552b7fc5a2b6dfb83c01abd4ee.php create mode 100644 data/cache/PHPStan/57/d5/57d5b6375d303cbbee2191f82481a5024c35e8c1.php create mode 100644 data/cache/PHPStan/58/50/58504eb552d53690174ac1c244e70def1c4a519c.php create mode 100644 data/cache/PHPStan/59/d0/59d08327722c115693abc214b37f6c297bc06973.php create mode 100644 data/cache/PHPStan/5a/7f/5a7fe2c394249eac081113239bda2b234b4933d5.php create mode 100644 data/cache/PHPStan/5a/9f/5a9fbd95fa73e1dad9d302fd2a99bb498a848813.php create mode 100644 data/cache/PHPStan/5b/cd/5bcd11cdaf0d586304d4fb9408b6c852a7774323.php create mode 100644 data/cache/PHPStan/5c/9a/5c9a35bd18677c1cd33d0775b986386e0a71a485.php create mode 100644 data/cache/PHPStan/5d/4d/5d4db524da18419d33dda566d697c95eb69cd5f4.php create mode 100644 data/cache/PHPStan/5e/2b/5e2bba4a3aac760f30e94bb9266bacd81731ad38.php create mode 100644 data/cache/PHPStan/5f/00/5f0010dbdc436ad8538cc17b11abfc09c73d8527.php create mode 100644 data/cache/PHPStan/60/15/601537931e86fa1e2ea57ede55e2c46bc5904a68.php create mode 100644 data/cache/PHPStan/60/f8/60f89acb3595aded60526f7c1f6e46ec6b0cbea1.php create mode 100644 data/cache/PHPStan/61/4f/614f0b76ae82233de7d2cb609788ad8dfddbd785.php create mode 100644 data/cache/PHPStan/61/8c/618cfc246e0d2c772fc507c7b1d7207008e09aac.php create mode 100644 data/cache/PHPStan/61/bf/61bfccb2ac6c5e9a63fa5dc89d03813a7f231d0a.php create mode 100644 data/cache/PHPStan/61/ce/61ce88e1823b7729279fd11260e89552c1d1631a.php create mode 100644 data/cache/PHPStan/61/ea/61ea51c88531a34a34dd40c07f58616739e61e93.php create mode 100644 data/cache/PHPStan/63/c1/63c1fd09925ae5da108652ffc9b2571cbefa3b7f.php create mode 100644 data/cache/PHPStan/63/e3/63e38b95d4f4c96348ba5469e1d1f16f2d322105.php create mode 100644 data/cache/PHPStan/65/21/652185cb8f6995eca3329243ec3074789d6d781f.php create mode 100644 data/cache/PHPStan/65/36/6536b34313b827e4328c7c69a9c6bd4b47550424.php create mode 100644 data/cache/PHPStan/65/3c/653ca551e84c3340002433aaa719246256f977ee.php create mode 100644 data/cache/PHPStan/65/3f/653f161ef2cff05433fe0fa66434804729cbee5e.php create mode 100644 data/cache/PHPStan/66/3d/663d3a5f39b3b808eb21f3ce746a28d3c747b349.php create mode 100644 data/cache/PHPStan/67/29/672972b24f56972fa36c68437f8d3d171bf0e46a.php create mode 100644 data/cache/PHPStan/68/33/68333087a45d8a173b7f49b089294acef0dfc197.php create mode 100644 data/cache/PHPStan/68/d4/68d43aad9174c1cdff50ac48d1bd2de591de1f9d.php create mode 100644 data/cache/PHPStan/69/15/6915fba9194d37a1a8345ca001cdb6b28bb6f731.php create mode 100644 data/cache/PHPStan/6b/42/6b42542855a281cdf1f25377c004a3890283b341.php create mode 100644 data/cache/PHPStan/6b/79/6b79ffe2d2f3ecb120cd95b4e6a001ff49a9b8a9.php create mode 100644 data/cache/PHPStan/6b/8b/6b8b3cb8c0068a29931b3c822341635d890e6bf6.php create mode 100644 data/cache/PHPStan/6d/c0/6dc03826a59b48f92204bbd8eecfed6a12c5e000.php create mode 100644 data/cache/PHPStan/71/52/715230f08d0b56c8dc7b5013fd99bc6803157557.php create mode 100644 data/cache/PHPStan/72/a1/72a1277046ed068f2da8cc94a7e2dec91b057084.php create mode 100644 data/cache/PHPStan/73/20/7320ecbd4ec9fde96a2c2e25b28ed6ec4d0f15bd.php create mode 100644 data/cache/PHPStan/74/c4/74c4755066ea86cd86d7faa0ef0f0d56ae91e46b.php create mode 100644 data/cache/PHPStan/77/1c/771c3d4d386e56fb4486a139d3b0d66b4383f4ca.php create mode 100644 data/cache/PHPStan/78/3c/783cbb9b71ac0eaf58c95099dc2e81446cb31f94.php create mode 100644 data/cache/PHPStan/78/a5/78a5cc4d76d7d8ba8967263de2868a1728aa9ab9.php create mode 100644 data/cache/PHPStan/78/bc/78bcb06e060c26add0ee5d64b4f63f6b33433a2a.php create mode 100644 data/cache/PHPStan/78/f4/78f4e82417388bd2999bc768958db49a6f516dfc.php create mode 100644 data/cache/PHPStan/79/1d/791d42dec1afa1e492f155878b516acf6613aa2e.php create mode 100644 data/cache/PHPStan/7b/46/7b467eca4e1377dc3b4d86c36144246e9cb8b4ee.php create mode 100644 data/cache/PHPStan/7c/ca/7cca279b3804f1daf686f6f76d2a25f318524bec.php create mode 100644 data/cache/PHPStan/7d/b9/7db9314965265f5a1122f840669bfbe4f815294d.php create mode 100644 data/cache/PHPStan/7e/a8/7ea8eb8185e71136ec60f992d88a19eaf0f9a089.php create mode 100644 data/cache/PHPStan/7e/d1/7ed1ef5f696332f7218718288784f27e0f286ba5.php create mode 100644 data/cache/PHPStan/80/0c/800c12194fed67fe6e7c6b298e0d341fa4a87e8c.php create mode 100644 data/cache/PHPStan/80/84/80843a377e9989817a1bc3c8edd9a2d0d677b767.php create mode 100644 data/cache/PHPStan/80/e6/80e61fa3def7b2ead509ed9d7224a95fc9207bb5.php create mode 100644 data/cache/PHPStan/82/12/821215ef26faa0f89dc1c9dd3a0b11fcbf45d238.php create mode 100644 data/cache/PHPStan/82/29/8229ee94d04173906feeb415651642b72c9b0573.php create mode 100644 data/cache/PHPStan/82/64/8264a307066f3229a11c44d841d54483d91aa0d2.php create mode 100644 data/cache/PHPStan/83/14/83144ff1660969936adb3b5bf33e82d2c71ca780.php create mode 100644 data/cache/PHPStan/84/ea/84ea0abfef2f2455b4c149887f949677e7ac123b.php create mode 100644 data/cache/PHPStan/86/52/8652dfb5dbc61c7bc8fb7f9e45095f503eb949d7.php create mode 100644 data/cache/PHPStan/86/af/86afd1f21dcf3d52c66aa1b3193e2b21694a3060.php create mode 100644 data/cache/PHPStan/86/d4/86d46cd235492e48c382a2590b16fdc9d4cb4bd8.php create mode 100644 data/cache/PHPStan/87/5a/875a60b1571c4b7cd47aed2781241a0af9767e40.php create mode 100644 data/cache/PHPStan/89/18/8918d8a850184a6941a77f4b453f4cc70b5aca45.php create mode 100644 data/cache/PHPStan/89/45/894509e411ee391fc6a619f7699250a9570d1ad6.php create mode 100644 data/cache/PHPStan/89/66/8966fb7f2622fb9235757ea1c3d8407fba7cc931.php create mode 100644 data/cache/PHPStan/89/a4/89a4e330c772b11033ff19857bd1f7f22e3836bc.php create mode 100644 data/cache/PHPStan/8a/c5/8ac58cab748b7bb3c1fa6545ab85504dae8f4c17.php create mode 100644 data/cache/PHPStan/8d/94/8d941c3dd1b837f591b2876a7290633465904ee8.php create mode 100644 data/cache/PHPStan/8e/f0/8ef043fdc5174b4062aae4753981223dcdd3b52e.php create mode 100644 data/cache/PHPStan/8f/9d/8f9d5209e697ad147161ee1e6e73939bf497560c.php create mode 100644 data/cache/PHPStan/91/97/9197685b4780c978746ad728f350d52e9efcb736.php create mode 100644 data/cache/PHPStan/91/f4/91f4cc125f6cb838326d89caa338a257f98583e8.php create mode 100644 data/cache/PHPStan/92/2c/922c99e7244200793d5e8ea15abf2faf88c1bf6b.php create mode 100644 data/cache/PHPStan/92/79/9279a7d328929717a9165ade49d56af51d46abd5.php create mode 100644 data/cache/PHPStan/95/93/959319bbf3575c6854b555884b624532b1992891.php create mode 100644 data/cache/PHPStan/96/86/9686829e0bde3898d90d45a214065ce6dd6d02ad.php create mode 100644 data/cache/PHPStan/98/bd/98bde3d050ad46a4e4d4623912a61a7e3b994d4a.php create mode 100644 data/cache/PHPStan/98/c1/98c186280446546a92fbcaccb9ca2da9a22da57b.php create mode 100644 data/cache/PHPStan/98/fb/98fbc138e80195b07a3a3cf33010a201b217d832.php create mode 100644 data/cache/PHPStan/9a/a3/9aa3e7a446b29da80fba3b93053440bc895f92b6.php create mode 100644 data/cache/PHPStan/9c/4c/9c4c2cd9153df6a13c3fe1e7ad45ead2f44a25fc.php create mode 100644 data/cache/PHPStan/9c/e4/9ce44407120181578ba38b9dbbc1e8f346304eab.php create mode 100644 data/cache/PHPStan/9e/2f/9e2fd8ee64c0ee935739ec05367cd4bd3f065305.php create mode 100644 data/cache/PHPStan/9e/4c/9e4c0a9cff4b7efc3f3b05beb7002974c13e9cbc.php create mode 100644 data/cache/PHPStan/9f/59/9f59d3203927f3b9004b1d1654c3d933fd8e69c6.php create mode 100644 data/cache/PHPStan/9f/9e/9f9e86be5a38c0eedb84122ac3c4f850402fc526.php create mode 100644 data/cache/PHPStan/a0/40/a040b03b682c63893633911aaf05d2b3112ab16e.php create mode 100644 data/cache/PHPStan/a1/ed/a1ed5fffcd1dbd596fbde55df8ebda81ac34e4bb.php create mode 100644 data/cache/PHPStan/a2/1f/a21fa0ef32151fb3cde03802a4a53759e55d87df.php create mode 100644 data/cache/PHPStan/a2/98/a2980e646464aff1f9fe3a41ff3fc234d8829fe0.php create mode 100644 data/cache/PHPStan/a3/2a/a32a0395c2ded4d78188609959407adb820a5d70.php create mode 100644 data/cache/PHPStan/a3/68/a368bd2d8dd0210910e3ae38c7be1d99ddc8c7dd.php create mode 100644 data/cache/PHPStan/a3/a8/a3a884ea935adc56433b6395233888755dc8f0ee.php create mode 100644 data/cache/PHPStan/a4/7e/a47ea4aacc94d2b76c62131e7352712ee9ec34bc.php create mode 100644 data/cache/PHPStan/a7/70/a770789801c10d90a66ee33c2e8caca85cf97289.php create mode 100644 data/cache/PHPStan/a8/0c/a80c1b97f67b232db03874f0b54ed6975802a2c0.php create mode 100644 data/cache/PHPStan/ab/1b/ab1b23c4afc47a46121bb14a990e3d2f510b4409.php create mode 100644 data/cache/PHPStan/ab/47/ab47638c0f5b6604e459e8b26a76c0460fcf96c8.php create mode 100644 data/cache/PHPStan/ab/b8/abb8cdd78a2d8b6f362f19b55cbdbd58a4bffb77.php create mode 100644 data/cache/PHPStan/ab/db/abdbdb57ee9fe8827341192ddd0a7b84b53981bf.php create mode 100644 data/cache/PHPStan/ad/b9/adb9fb049ce98c71152804ae143e2be343a18e4f.php create mode 100644 data/cache/PHPStan/ae/37/ae373a4ac29a22dce843d2aabc091196aee2fb7c.php create mode 100644 data/cache/PHPStan/ae/42/ae42806e3c50767db85e0e08f3fbec902e03c76a.php create mode 100644 data/cache/PHPStan/ae/8a/ae8ac29c1a321f3966a1c2c5b0ced21fa50f1b06.php create mode 100644 data/cache/PHPStan/b1/3b/b13b871ad7aef06514cb36eeb7971605a44e32a2.php create mode 100644 data/cache/PHPStan/b3/d8/b3d8069dba0a1e67e58db2439fc676faffa2bbe7.php create mode 100644 data/cache/PHPStan/b4/46/b4468d537e8981d09e6e6b5e9a84f0f5267c83a6.php create mode 100644 data/cache/PHPStan/b4/c3/b4c3c16c3efee2aa4112997b19a88162d9273fd5.php create mode 100644 data/cache/PHPStan/b6/fc/b6fc8598ade47c8f9ced34f6bb705b94aae73c96.php create mode 100644 data/cache/PHPStan/b8/57/b857f151d9eee738b2a728cadd71a52d2af1a83c.php create mode 100644 data/cache/PHPStan/b8/e3/b8e3dca32ad19ac12c2fe3c286e7cfd5b97a93c3.php create mode 100644 data/cache/PHPStan/b9/f5/b9f51c8eaabcec054c2de5a4493332627a7e190b.php create mode 100644 data/cache/PHPStan/ba/45/ba45dfbbf41ccac63abd7024cde9758b704ab45e.php create mode 100644 data/cache/PHPStan/ba/47/ba47a23cd182eb7bec5721914695adb03053c094.php create mode 100644 data/cache/PHPStan/bb/8f/bb8f5e5fb1ab91df44808ba9b1fbd3ebdf1d021c.php create mode 100644 data/cache/PHPStan/bc/2b/bc2b559377237532e608f642cbc72e3309f1f2fa.php create mode 100644 data/cache/PHPStan/bc/e8/bce81fbc582defb6dd5dbd68543058765a3dff8b.php create mode 100644 data/cache/PHPStan/bd/37/bd37ea4ef287a9aa0e114b52a027b2efb5d8f3be.php create mode 100644 data/cache/PHPStan/bf/d2/bfd2fe383718086c7fd58237ae26b25915459537.php create mode 100644 data/cache/PHPStan/c1/92/c1922562605ad2653aa5032f493c53c6c7e82ed0.php create mode 100644 data/cache/PHPStan/c2/e9/c2e93f6dc26fab2f24f883eed87cf283d85255c8.php create mode 100644 data/cache/PHPStan/c4/6b/c46b08a745e113d3444ae8a7aebcf01d43b2b54b.php create mode 100644 data/cache/PHPStan/c6/90/c690e2bebb5d378158c041037dc531dec0616f44.php create mode 100644 data/cache/PHPStan/c6/c7/c6c7e15d15806f232958ca2745aaa89dda159192.php create mode 100644 data/cache/PHPStan/c7/3d/c73df6ee5044a0fb9003cad34d64f70e135e8c2a.php create mode 100644 data/cache/PHPStan/c9/c2/c9c25e3685e0266e5464f4250be70d1eb1f61e02.php create mode 100644 data/cache/PHPStan/ca/e9/cae98a0407200523afcfc69c3258e8f0355399a0.php create mode 100644 data/cache/PHPStan/cc/7b/cc7b640f7f737016134e37c80752e603b801bc16.php create mode 100644 data/cache/PHPStan/cc/a4/cca421c1ec9795196258ff6d5a5d167ed6817f8b.php create mode 100644 data/cache/PHPStan/cc/f3/ccf3a128dd7dc46bd6f3a7dc119f8110dd1ced7f.php create mode 100644 data/cache/PHPStan/cd/81/cd8187c54df620f355446b2bc7cd3894125463d1.php create mode 100644 data/cache/PHPStan/ce/4b/ce4b30a72a5e2ba85367918e894068d4d8ad93a2.php create mode 100644 data/cache/PHPStan/ce/e4/cee4d36311afa199a7ad1330e9863dcce72bb9d5.php create mode 100644 data/cache/PHPStan/cf/be/cfbe786521a231a526b45d878f07f2214b1abaf6.php create mode 100644 data/cache/PHPStan/d0/07/d007c7695ba5eb445ea5a7dcf6d406bead213429.php create mode 100644 data/cache/PHPStan/d1/71/d171381da9e1fc3dfe6271e76cfc66ce8de8d815.php create mode 100644 data/cache/PHPStan/d2/5a/d25a12b2ff83257315e6a18922d11f8fea5fe72a.php create mode 100644 data/cache/PHPStan/d2/f6/d2f6b5ac15f6fa7012b3045cb7e68b009cfef69d.php create mode 100644 data/cache/PHPStan/d4/12/d412241aafa86f3b0144cde635ff239c6fbebe89.php create mode 100644 data/cache/PHPStan/d5/83/d58345230f80c9c457e5ef675579a4e8bb8f062d.php create mode 100644 data/cache/PHPStan/d6/c7/d6c7894d2c3f31a89cbb701649ffdb29880305c3.php create mode 100644 data/cache/PHPStan/d6/d1/d6d1cf91766bba92a19ba0f5f8ad32c56411dc23.php create mode 100644 data/cache/PHPStan/d8/4f/d84f1f1b679a04eb41dfed1d9eb8bd63495a3739.php create mode 100644 data/cache/PHPStan/d9/61/d9612a4104111b7f099f71a618f1e30a2b68fe04.php create mode 100644 data/cache/PHPStan/d9/6e/d96e6114bae224af917ef66aa644cbd3d2ad388d.php create mode 100644 data/cache/PHPStan/da/0c/da0c41b7b7efaab03b8c58d20ab83fa2b47876f4.php create mode 100644 data/cache/PHPStan/da/91/da911c7c46b1b5fdf99e60f594bd1fa7b0de57f5.php create mode 100644 data/cache/PHPStan/dc/a9/dca91084a6fffc5ff8585f980e51b9c4f4af7a0b.php create mode 100644 data/cache/PHPStan/dd/35/dd35a6f2b8b307afb80055a2e8afbfc4be43623b.php create mode 100644 data/cache/PHPStan/dd/5b/dd5b834cc67cb680840b8984056bd3aa642557a4.php create mode 100644 data/cache/PHPStan/dd/ad/ddad4a9d3067ff46a5f269031f7ab097a5d8d512.php create mode 100644 data/cache/PHPStan/dd/d1/ddd19efd73efd622a0e33a448ab1edf31f57217d.php create mode 100644 data/cache/PHPStan/de/c1/dec120293f83544841608b0b8244f1b466274780.php create mode 100644 data/cache/PHPStan/de/e4/dee4b9bf1b90f7e353e74a4a2acb6d708b044aad.php create mode 100644 data/cache/PHPStan/df/ff/dfffda35031533d5f3c3def47b1112fc85c90940.php create mode 100644 data/cache/PHPStan/e0/2a/e02afeaabe77653c97a35c740be56b13386484dd.php create mode 100644 data/cache/PHPStan/e0/c3/e0c3951210468e1993eb63cab47a7b5b90900c58.php create mode 100644 data/cache/PHPStan/e1/41/e141554384b393b6d9000a46e3db1e4a5ec223ec.php create mode 100644 data/cache/PHPStan/e1/a7/e1a726c9b10a25c77ef8e287e3c5d2a17c2afc3e.php create mode 100644 data/cache/PHPStan/e1/d4/e1d40f514e065d528e58310fc766719b31dda359.php create mode 100644 data/cache/PHPStan/e3/c5/e3c553486b2485d247bd6bd0e3914b90c67a93e4.php create mode 100644 data/cache/PHPStan/e3/d6/e3d64048576d3b4dd3c8a3c5bceb77330a26176f.php create mode 100644 data/cache/PHPStan/e5/c1/e5c1632e349e087ae5a7c757d76a9ae1fb7c6acd.php create mode 100644 data/cache/PHPStan/e5/c3/e5c3f42e60230db73c41ff5c2adf5539f3fa2f55.php create mode 100644 data/cache/PHPStan/e7/8a/e78a9585a205dbbed43edcc6315dc48aad0b624f.php create mode 100644 data/cache/PHPStan/e7/a2/e7a26daa24ce442984a6a8ba6ba0030afa924c8b.php create mode 100644 data/cache/PHPStan/e8/32/e83247bd7b1c1562ffe438dfe5907427243da65b.php create mode 100644 data/cache/PHPStan/e9/4e/e94ebb3b47f34e8ed39a6e2a65014583500d1d16.php create mode 100644 data/cache/PHPStan/e9/ce/e9ceb39be3c5da139b626441971fd2099dcf1f6c.php create mode 100644 data/cache/PHPStan/e9/fa/e9faed4e6fa23e59e4de957eaae032848e795a97.php create mode 100644 data/cache/PHPStan/ea/e5/eae5d6db7da71566297d73f5a1df212309c98e5c.php create mode 100644 data/cache/PHPStan/eb/1d/eb1d130969b88d4bd9d39f8891e9cec990844008.php create mode 100644 data/cache/PHPStan/eb/77/eb77c9a005e659a453b0bc8b5041ef2a462a8015.php create mode 100644 data/cache/PHPStan/eb/cf/ebcf66005f1f2acb717ffeac4774d1c041c59add.php create mode 100644 data/cache/PHPStan/ec/c5/ecc5efd85deeb4d2d6a3f8e16cf1e8471d6364aa.php create mode 100644 data/cache/PHPStan/ed/b5/edb5d8770b219cfde9b57e0972632076180c0483.php create mode 100644 data/cache/PHPStan/ed/c6/edc69e39a3a4997e1aec459930c238ce0166f05f.php create mode 100644 data/cache/PHPStan/f0/89/f089aed06f5659c1cd3a52f134da3b6c3e2d8647.php create mode 100644 data/cache/PHPStan/f6/95/f695a19e30d9cc6991a7a2a70030e0b065aa3c24.php create mode 100644 data/cache/PHPStan/f7/37/f7371664a9c19e9d8b4a1c2b4e105cd6fd35f0c3.php create mode 100644 data/cache/PHPStan/f7/9a/f79a081e7346c5a2cda149dbaaeef2aea046a252.php create mode 100644 data/cache/PHPStan/f7/f2/f7f2d3e743b6119918283d2ce2177a81d949b50c.php create mode 100644 data/cache/PHPStan/f9/24/f924cd25dc973f55931bea8a8528ec94d3c94041.php create mode 100644 data/cache/PHPStan/f9/f8/f9f8270bfe6983a1f413389b25714a94be6cbaaf.php create mode 100644 data/cache/PHPStan/fb/dc/fbdcb17d80a93cfa22d6a6b6bcb7554780a3115e.php create mode 100644 data/cache/PHPStan/fc/c4/fcc423010bc45eca703f6bc521b89cc82bfe0ff2.php create mode 100644 data/cache/nette.configurator/Container_0680f21d46.php create mode 100644 data/cache/nette.configurator/Container_0680f21d46.php.lock create mode 100644 data/cache/nette.configurator/Container_0680f21d46.php.meta create mode 100644 data/cache/nette.configurator/Container_e563100465.php create mode 100644 data/cache/nette.configurator/Container_e563100465.php.lock create mode 100644 data/cache/nette.configurator/Container_e563100465.php.meta create mode 100644 data/resultCache.php create mode 100644 phpstan.neon.dist diff --git a/composer.json b/composer.json index e62ccb5..d7591c3 100644 --- a/composer.json +++ b/composer.json @@ -28,8 +28,11 @@ }, "require-dev": { "phpspec/phpspec": "^6.2", - "phpunit/phpunit": "^9.3", - "phpstan/phpstan": "^0.12" + "phpunit/phpunit": "^9.4", + "phpstan/phpstan": "^0.12.51", + "phpstan/phpstan-deprecation-rules": "^0.12.4", + "phpstan/phpstan-phpunit": "^0.12.16", + "squizlabs/php_codesniffer": "^3.5.5" }, "autoload": { "psr-4": { diff --git a/data/cache/PHPStan/00/0a/000a4cddf31df8af174ad17be8dc3b09175dc73f.php b/data/cache/PHPStan/00/0a/000a4cddf31df8af174ad17be8dc3b09175dc73f.php new file mode 100644 index 0000000..299e6a9 --- /dev/null +++ b/data/cache/PHPStan/00/0a/000a4cddf31df8af174ad17be8dc3b09175dc73f.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:9:"TNewValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TNewValue";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TNewValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/00/67/0067eef7caa776617b55a580402020ecc32d9a07.php b/data/cache/PHPStan/00/67/0067eef7caa776617b55a580402020ecc32d9a07.php new file mode 100644 index 0000000..1ee6df0 --- /dev/null +++ b/data/cache/PHPStan/00/67/0067eef7caa776617b55a580402020ecc32d9a07.php @@ -0,0 +1,13 @@ + '1603454189', + 'data' => + array ( + 0 => + array ( + 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', + 'modifiedTime' => 1603454189, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/03/6f/036f4d6560dcf9f7aefbcdd3132d0730b737fce3.php b/data/cache/PHPStan/03/6f/036f4d6560dcf9f7aefbcdd3132d0730b737fce3.php new file mode 100644 index 0000000..015b6a0 --- /dev/null +++ b/data/cache/PHPStan/03/6f/036f4d6560dcf9f7aefbcdd3132d0730b737fce3.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"Stack";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/03/ca/03ca84e5b6f3e4b22ae20bc4300cb0e203a7b7f4.php b/data/cache/PHPStan/03/ca/03ca84e5b6f3e4b22ae20bc4300cb0e203a7b7f4.php new file mode 100644 index 0000000..6a08c83 --- /dev/null +++ b/data/cache/PHPStan/03/ca/03ca84e5b6f3e4b22ae20bc4300cb0e203a7b7f4.php @@ -0,0 +1,13 @@ + '1603454189', + 'data' => + array ( + 0 => + array ( + 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', + 'modifiedTime' => 1603454189, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/04/62/0462b2883ce7042964b9139cdb9d903f2bd674d2.php b/data/cache/PHPStan/04/62/0462b2883ce7042964b9139cdb9d903f2bd674d2.php new file mode 100644 index 0000000..e628be3 --- /dev/null +++ b/data/cache/PHPStan/04/62/0462b2883ce7042964b9139cdb9d903f2bd674d2.php @@ -0,0 +1,13 @@ + '1603454189', + 'data' => + array ( + 0 => + array ( + 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', + 'modifiedTime' => 1603454189, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/05/9d/059dfb281d3410a16432fd2a256fe58d1414348f.php b/data/cache/PHPStan/05/9d/059dfb281d3410a16432fd2a256fe58d1414348f.php new file mode 100644 index 0000000..63a510f --- /dev/null +++ b/data/cache/PHPStan/05/9d/059dfb281d3410a16432fd2a256fe58d1414348f.php @@ -0,0 +1,32 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php-1603543737', + 'data' => + array ( + '1b6e332f9601eb7172f28688d8d46d12' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\IntType', + 'functionName' => 'check', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/05/b7/05b7a2a3e5056cd3e0c4df8dee8aaf587c9db207.php b/data/cache/PHPStan/05/b7/05b7a2a3e5056cd3e0c4df8dee8aaf587c9db207.php new file mode 100644 index 0000000..f02fc7c --- /dev/null +++ b/data/cache/PHPStan/05/b7/05b7a2a3e5056cd3e0c4df8dee8aaf587c9db207.php @@ -0,0 +1,7 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:95:"Objects implementing JsonSerializable +can customize their JSON representation when encoded with";}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:19:"json_encode.";}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:52:"https://php.net/manual/en/class.jsonserializable.php";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@since";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:3:"5.4";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/06/9f/069f575d514a669670e89f7af2cb19cfaf5ce0d1.php b/data/cache/PHPStan/06/9f/069f575d514a669670e89f7af2cb19cfaf5ce0d1.php new file mode 100644 index 0000000..5e9d775 --- /dev/null +++ b/data/cache/PHPStan/06/9f/069f575d514a669670e89f7af2cb19cfaf5ce0d1.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$set";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:50:"PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/06/a2/06a2193f7af66062cc312f781115c60e2ae203e8.php b/data/cache/PHPStan/06/a2/06a2193f7af66062cc312f781115c60e2ae203e8.php new file mode 100644 index 0000000..461be73 --- /dev/null +++ b/data/cache/PHPStan/06/a2/06a2193f7af66062cc312f781115c60e2ae203e8.php @@ -0,0 +1,13 @@ + '1603454189', + 'data' => + array ( + 0 => + array ( + 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', + 'modifiedTime' => 1603454189, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/06/d8/06d864fd06c484549ae2f82f51eb54c2a4477ee1.php b/data/cache/PHPStan/06/d8/06d864fd06c484549ae2f82f51eb54c2a4477ee1.php new file mode 100644 index 0000000..06ae3f5 --- /dev/null +++ b/data/cache/PHPStan/06/d8/06d864fd06c484549ae2f82f51eb54c2a4477ee1.php @@ -0,0 +1,13 @@ + '1596634130', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', + 'modifiedTime' => 1596634130, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/07/0f/070fc590261c8efaa08151ed24abd20808f664eb.php b/data/cache/PHPStan/07/0f/070fc590261c8efaa08151ed24abd20808f664eb.php new file mode 100644 index 0000000..17646c6 --- /dev/null +++ b/data/cache/PHPStan/07/0f/070fc590261c8efaa08151ed24abd20808f664eb.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/07/6b/076bffd393d0ca1c70d57c8a1c1787a895a0996f.php b/data/cache/PHPStan/07/6b/076bffd393d0ca1c70d57c8a1c1787a895a0996f.php new file mode 100644 index 0000000..dacf53c --- /dev/null +++ b/data/cache/PHPStan/07/6b/076bffd393d0ca1c70d57c8a1c1787a895a0996f.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:27:"Representation of time zone";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:48:"https://php.net/manual/en/class.datetimezone.php";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/07/6c/076cabf11024934dfbb7015b8e4b4791229fc579.php b/data/cache/PHPStan/07/6c/076cabf11024934dfbb7015b8e4b4791229fc579.php new file mode 100644 index 0000000..90a0aae --- /dev/null +++ b/data/cache/PHPStan/07/6c/076cabf11024934dfbb7015b8e4b4791229fc579.php @@ -0,0 +1,1005 @@ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/../../../../../jetbrains/phpstorm-stubs/json/json.stub-1603454189', + 'data' => + array ( + 'ce22f9e9c13f3d921a6a92b72bbfea45' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Objects implementing JsonSerializable + * can customize their JSON representation when encoded with + * json_encode. + * @link https://php.net/manual/en/class.jsonserializable.php + * @since 5.4 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => 'JsonSerializable', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '29e58b895d17147532984fbb53e5796f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Specify data which should be serialized to JSON + * @link https://php.net/manual/en/jsonserializable.jsonserialize.php + * @return mixed data which can be serialized by json_encode, + * which is a value of any type other than a resource. + * @since 5.4 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => 'JsonSerializable', + 'functionName' => 'jsonSerialize', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '90161977e0da9b179a049909480aa74d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param int $depth [optional] + * @param int $options [optional] + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => 'JsonIncrementalParser', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e5a9c15a6af0cd7b9a11db28b9b22598' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param string $json + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => 'JsonIncrementalParser', + 'functionName' => 'parse', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '31d9f61dce3f8f3bcfee5f3db84db7ff' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param string $filename + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => 'JsonIncrementalParser', + 'functionName' => 'parseFile', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '500a4b99bd26f8329fb7c9c4fe295581' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param int $options [optional] + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => 'JsonIncrementalParser', + 'functionName' => 'get', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'c8abc9f12d1c58d1e3bd5bc8b94307e6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >= 5.2.0, PECL json >= 1.2.0)
+ * Returns the JSON representation of a value + * @link https://php.net/manual/en/function.json-encode.php + * @param mixed $value

+ * The value being encoded. Can be any type except + * a resource. + *

+ *

+ * All string data must be UTF-8 encoded. + *

+ *

PHP implements a superset of + * JSON - it will also encode and decode scalar types and NULL. The JSON standard + * only supports these values when they are nested inside an array or an object. + *

+ * @param int $flags [optional]

+ * Bitmask consisting of JSON_HEX_QUOT, + * JSON_HEX_TAG, + * JSON_HEX_AMP, + * JSON_HEX_APOS, + * JSON_NUMERIC_CHECK, + * JSON_PRETTY_PRINT, + * JSON_UNESCAPED_SLASHES, + * JSON_FORCE_OBJECT, + * JSON_UNESCAPED_UNICODE. + * JSON_THROW_ON_ERROR The behaviour of these + * constants is described on + * the JSON constants page. + *

+ * @param int $depth [optional]

+ * Set the maximum depth. Must be greater than zero. + *

+ * @return string|false a JSON encoded string on success or FALSE on failure. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => 'json_encode', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '449514c61c5f2f7fa871127098ec7c0a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >= 5.2.0, PECL json >= 1.2.0)
+ * Decodes a JSON string + * @link https://php.net/manual/en/function.json-decode.php + * @param string $json

+ * The json string being decoded. + *

+ *

+ * This function only works with UTF-8 encoded strings. + *

+ *

PHP implements a superset of + * JSON - it will also encode and decode scalar types and NULL. The JSON standard + * only supports these values when they are nested inside an array or an object. + *

+ * @param bool $associative [optional]

+ * When TRUE, returned objects will be converted into + * associative arrays. + *

+ * @param int $depth [optional]

+ * User specified recursion depth. + *

+ * @param int $flags [optional]

+ * Bitmask of JSON decode options:
+ * {@see JSON_BIGINT_AS_STRING} decodes large integers as their original string value.
+ * {@see JSON_INVALID_UTF8_IGNORE} ignores invalid UTF-8 characters,
+ * {@see JSON_INVALID_UTF8_SUBSTITUTE} converts invalid UTF-8 characters to \\0xfffd,
+ * {@see JSON_OBJECT_AS_ARRAY} decodes JSON objects as PHP array, since 7.2.0 used by default if $assoc parameter is null,
+ * {@see JSON_THROW_ON_ERROR} when passed this flag, the error behaviour of these functions is changed. The global error state is left untouched, and if an error occurs that would otherwise set it, these functions instead throw a JsonException
+ *

+ * @return mixed the value encoded in json in appropriate + * PHP type. Values true, false and + * null (case-insensitive) are returned as TRUE, FALSE + * and NULL respectively. NULL is returned if the + * json cannot be decoded or if the encoded + * data is deeper than the recursion limit. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => 'json_decode', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'fe9dea59ebc7afcfc71c9d2f6491a670' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns the last error occurred + * @link https://php.net/manual/en/function.json-last-error.php + * @return int an integer, the value can be one of the following + * constants: + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => 'json_last_error', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '0f9953b4f9f1c7b62993e7e712052979' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns the error string of the last json_encode() or json_decode() call, which did not specify JSON_THROW_ON_ERROR. + * @link https://php.net/manual/en/function.json-last-error-msg.php + * @return string|false Returns the error message on success, "No error" if no error has occurred, or FALSE on failure. + * @since 5.5 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => 'json_last_error_msg', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'c7c9aad12659bc0039fc684a91415463' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * All < and > are converted to \\u003C and \\u003E. + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e2fe476b57f64565c100b1dfa213eb44' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * All &#38;s are converted to \\u0026. + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'b868ad4f23e1a17bcef8df07992394f9' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * All \' are converted to \\u0027. + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'c343cf1e06e29d453c7cad113d49ce3e' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * All " are converted to \\u0022. + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '72d6b80d0d83ff3841f6dbff11a25aa7' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Outputs an object rather than an array when a non-associative array is + * used. Especially useful when the recipient of the output is expecting + * an object and the array is empty. + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '2723d50a3ee64ce0d2138c67abcc491f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Encodes numeric strings as numbers. + * @since 5.3.3 + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '61f09ffa7f1fb4c7e74883aead69bc26' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Don\'t escape /. + * @since 5.4 + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'f70d6cec7bdef8b8610c51b697bacab3' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Use whitespace in returned data to format it. + * @since 5.4 + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'cf3e16e7f0d092cbd965aee2156c63b6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Encode multibyte Unicode characters literally (default is to escape as \\uXXXX). + * @since 5.4 + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '00a6b57b7f49c7a5985bcb5011f4c829' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Occurs with underflow or with the modes mismatch. + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '99f03068d11b5030bc104cb76104b448' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Control character error, possibly incorrectly encoded. + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'c4490f9d4fc92288012a9d4a2972633b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Malformed UTF-8 characters, possibly incorrectly encoded. This + * constant is available as of PHP 5.3.3. + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '48c5e0c8c264833e08a032e50d688f13' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + *

+ * The object or array passed to json_encode include + * recursive references and cannot be encoded. + * If the JSON_PARTIAL_OUTPUT_ON_ERROR option was + * given, NULL will be encoded in the place of the recursive reference. + *

+ *

+ * This constant is available as of PHP 5.5.0. + *

+ * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e622864567a826d734a330101523d8fa' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + *

+ * The value passed to json_encode includes either + * NAN + * or INF. + * If the JSON_PARTIAL_OUTPUT_ON_ERROR option was + * given, 0 will be encoded in the place of these + * special numbers. + *

+ *

+ * This constant is available as of PHP 5.5.0. + *

+ * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e5dd2878ba4d6620e5d3ace4fd1fabcf' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + *

+ * A value of an unsupported type was given to + * json_encode, such as a resource. + * If the JSON_PARTIAL_OUTPUT_ON_ERROR option was + * given, NULL will be encoded in the place of the unsupported value. + *

+ *

+ * This constant is available as of PHP 5.5.0. + *

+ * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'aba000380fc514bcf8ed5cb6ec19b1cd' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * No error has occurred. + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'a93cd495d6f102c63900a97ff10738c7' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * The maximum stack depth has been exceeded. + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'bed397cae0655592a280b52beeb24a53' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Syntax error. + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e711f2725c35022a3ff7b2b594a541ac' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Decodes JSON objects as PHP array. + * @since 5.4 + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'c15abe2acbf36a5e7d15fad55c653d55' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Decodes large integers as their original string value. + * @since 5.4 + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '1e56e147aff44410def2ec5b7fb2fdba' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Ensures that float values are always encoded as a float value. + * @since 5.6.6 + * @link https://php.net/manual/en/json.constants.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'd78895e39b46847a54d4d053bf0ef48d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * The line terminators are kept unescaped when JSON_UNESCAPED_UNICODE is supplied. + * It uses the same behaviour as it was before PHP 7.1 without this constant. Available since PHP 7.1.0. + * @link https://php.net/manual/en/json.constants.php + * @since 7.1 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '58698f74339b0e0c0c88ee4d2141fa99' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Ignore invalid UTF-8 characters. + * @since 7.2 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '27e03666e8bf5db58adaa58a0ea86335' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Convert invalid UTF-8 characters to \\0xfffd (Unicode Character \'REPLACEMENT CHARACTER\'). + * @since 7.2 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'cf716571452ba67133db705df6a93821' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * A key starting with \\u0000 character was in the string passed to json_decode() when decoding a JSON object into a PHP object. + * Available since PHP 7.0.0. + * @link https://php.net/manual/en/json.constants.php + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '7377b7b591df3eb23ec0ac8588907e80' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Single unpaired UTF-16 surrogate in unicode escape contained in the JSON string passed to json_encode(). + * Available since PHP 7.0.0. + * @link https://php.net/manual/en/json.constants.php + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '54316452450462c997431d78f8c91503' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Throws JsonException if an error occurs instead of setting the global error state + * that is retrieved with json_last_error() and json_last_error_msg(). + * + * {@see JSON_PARTIAL_OUTPUT_ON_ERROR} takes precedence over JSON_THROW_ON_ERROR. + * @since 7.3 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => NULL, + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '190526aedcf67fea60e80b6cb9cc7c41' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Class JsonException + * + *

A new flag has been added, JSON_THROW_ON_ERROR, which can be used with + * json_decode() or json_encode() and causes these functions to throw a + * JsonException upon an error, instead of setting the global error state that + * is retrieved with json_last_error(). JSON_PARTIAL_OUTPUT_ON_ERROR takes + * precedence over JSON_THROW_ON_ERROR. + *

+ * + * @since 7.3 + * @link https://wiki.php.net/rfc/json_throw_on_error + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + 'pure' => 'JetBrains\\PhpStorm\\Pure', + ), + 'className' => 'JsonException', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/07/8b/078b14374d2b72d3812f6176226ce1d2a8367e82.php b/data/cache/PHPStan/07/8b/078b14374d2b72d3812f6176226ce1d2a8367e82.php new file mode 100644 index 0000000..58d288e --- /dev/null +++ b/data/cache/PHPStan/07/8b/078b14374d2b72d3812f6176226ce1d2a8367e82.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/07/cb/07cb1720fd3cfffaaeec87b0a173a680d4097733.php b/data/cache/PHPStan/07/cb/07cb1720fd3cfffaaeec87b0a173a680d4097733.php new file mode 100644 index 0000000..b80f699 --- /dev/null +++ b/data/cache/PHPStan/07/cb/07cb1720fd3cfffaaeec87b0a173a680d4097733.php @@ -0,0 +1,29 @@ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub-1603454189', + 'data' => + array ( + '8c1804930863cbe7cd9960b8061e3a2a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return string|false + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ReflectionFunctionAbstract', + 'functionName' => 'getFileName', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/07/f0/07f0940f43b5f622f819512dd8c46d1472b549d8.php b/data/cache/PHPStan/07/f0/07f0940f43b5f622f819512dd8c46d1472b549d8.php new file mode 100644 index 0000000..bf64bc9 --- /dev/null +++ b/data/cache/PHPStan/07/f0/07f0940f43b5f622f819512dd8c46d1472b549d8.php @@ -0,0 +1,13 @@ + '1603454189', + 'data' => + array ( + 0 => + array ( + 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', + 'modifiedTime' => 1603454189, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/08/0c/080ca6f13fa2ee0cfccaa2cd0d752e72b7360192.php b/data/cache/PHPStan/08/0c/080ca6f13fa2ee0cfccaa2cd0d752e72b7360192.php new file mode 100644 index 0000000..d00c7ac --- /dev/null +++ b/data/cache/PHPStan/08/0c/080ca6f13fa2ee0cfccaa2cd0d752e72b7360192.php @@ -0,0 +1,13 @@ + '1603535699', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/CheckerInterface.php', + 'modifiedTime' => 1603535699, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/09/8a/098a4a95badc545a86733693d59175f77f5944f4.php b/data/cache/PHPStan/09/8a/098a4a95badc545a86733693d59175f77f5944f4.php new file mode 100644 index 0000000..a5f9fe3 --- /dev/null +++ b/data/cache/PHPStan/09/8a/098a4a95badc545a86733693d59175f77f5944f4.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:13:"PriorityQueue";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/09/e2/09e26534d603e6c6f9628db80d83350442b9a1fd.php b/data/cache/PHPStan/09/e2/09e26534d603e6c6f9628db80d83350442b9a1fd.php new file mode 100644 index 0000000..cb4cab4 --- /dev/null +++ b/data/cache/PHPStan/09/e2/09e26534d603e6c6f9628db80d83350442b9a1fd.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:1;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:20:"\\OutOfRangeException";}s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/0a/f4/0af45682fbe8d6e04191767c1363cc64f4e7abaa.php b/data/cache/PHPStan/0a/f4/0af45682fbe8d6e04191767c1363cc64f4e7abaa.php new file mode 100644 index 0000000..60f746c --- /dev/null +++ b/data/cache/PHPStan/0a/f4/0af45682fbe8d6e04191767c1363cc64f4e7abaa.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:58:"Classes implementing Countable can be used with the";}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:22:"count function.";}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:45:"https://php.net/manual/en/class.countable.php";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/0e/2b/0e2be59f615a7db560c2bcb12a3357a94bbbada1.php b/data/cache/PHPStan/0e/2b/0e2be59f615a7db560c2bcb12a3357a94bbbada1.php new file mode 100644 index 0000000..36586fa --- /dev/null +++ b/data/cache/PHPStan/0e/2b/0e2be59f615a7db560c2bcb12a3357a94bbbada1.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:5:"TNode";s:5:"bound";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"DOMNode";}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"Traversable";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TNode";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/11/3d/113dafc11b645c0fbc6b34d171ef40371f8e7ebc.php b/data/cache/PHPStan/11/3d/113dafc11b645c0fbc6b34d171ef40371f8e7ebc.php new file mode 100644 index 0000000..e73354f --- /dev/null +++ b/data/cache/PHPStan/11/3d/113dafc11b645c0fbc6b34d171ef40371f8e7ebc.php @@ -0,0 +1,13 @@ + '1603454189', + 'data' => + array ( + 0 => + array ( + 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', + 'modifiedTime' => 1603454189, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/11/74/11747a8fdf09ab4777eb7d67cc52bff2d17cd784.php b/data/cache/PHPStan/11/74/11747a8fdf09ab4777eb7d67cc52bff2d17cd784.php new file mode 100644 index 0000000..3e24ee3 --- /dev/null +++ b/data/cache/PHPStan/11/74/11747a8fdf09ab4777eb7d67cc52bff2d17cd784.php @@ -0,0 +1,6 @@ + '1603535530-v2', + 'data' => false, +)); \ No newline at end of file diff --git a/data/cache/PHPStan/12/e1/12e1452bb32fb5ef782e3b242cfea3674fd93b16.php b/data/cache/PHPStan/12/e1/12e1452bb32fb5ef782e3b242cfea3674fd93b16.php new file mode 100644 index 0000000..085b926 --- /dev/null +++ b/data/cache/PHPStan/12/e1/12e1452bb32fb5ef782e3b242cfea3674fd93b16.php @@ -0,0 +1,13 @@ + '1603543737', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php', + 'modifiedTime' => 1603543737, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/17/20/17209d861d2409564384d2e4f41e119b1fec1d82.php b/data/cache/PHPStan/17/20/17209d861d2409564384d2e4f41e119b1fec1d82.php new file mode 100644 index 0000000..b4fb1d9 --- /dev/null +++ b/data/cache/PHPStan/17/20/17209d861d2409564384d2e4f41e119b1fec1d82.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:11:"$comparator";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/19/27/192715a5da745979feffe2d14c91785f25a6596b.php b/data/cache/PHPStan/19/27/192715a5da745979feffe2d14c91785f25a6596b.php new file mode 100644 index 0000000..36357bd --- /dev/null +++ b/data/cache/PHPStan/19/27/192715a5da745979feffe2d14c91785f25a6596b.php @@ -0,0 +1,13 @@ + '1603454189', + 'data' => + array ( + 0 => + array ( + 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', + 'modifiedTime' => 1603454189, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/1a/46/1a4690126fcad20d59b0b8d5490d6289531dfaa0.php b/data/cache/PHPStan/1a/46/1a4690126fcad20d59b0b8d5490d6289531dfaa0.php new file mode 100644 index 0000000..57b8d7d --- /dev/null +++ b/data/cache/PHPStan/1a/46/1a4690126fcad20d59b0b8d5490d6289531dfaa0.php @@ -0,0 +1,13 @@ + '1596634130', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', + 'modifiedTime' => 1596634130, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/1a/86/1a866dd0220d2779d8d9615a8fc260920bffa07b.php b/data/cache/PHPStan/1a/86/1a866dd0220d2779d8d9615a8fc260920bffa07b.php new file mode 100644 index 0000000..25e58f8 --- /dev/null +++ b/data/cache/PHPStan/1a/86/1a866dd0220d2779d8d9615a8fc260920bffa07b.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:18:"$originalClassName";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode":1:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$methods";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:15:"@phpstan-return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:50:"PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"MockObject";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/1a/f7/1af7fd87ba6c17b79c09aff585809402189a7bf2.php b/data/cache/PHPStan/1a/f7/1af7fd87ba6c17b79c09aff585809402189a7bf2.php new file mode 100644 index 0000000..3654099 --- /dev/null +++ b/data/cache/PHPStan/1a/f7/1af7fd87ba6c17b79c09aff585809402189a7bf2.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"DOMElement";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/1b/1c/1b1c8fdc936455eaed81170cb41f773613fd8302.php b/data/cache/PHPStan/1b/1c/1b1c8fdc936455eaed81170cb41f773613fd8302.php new file mode 100644 index 0000000..36456a7 --- /dev/null +++ b/data/cache/PHPStan/1b/1c/1b1c8fdc936455eaed81170cb41f773613fd8302.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:8:"@extends";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ExtendsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"Traversable";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/1c/f4/1cf495ba97114552ec359076767cf935b252b415.php b/data/cache/PHPStan/1c/f4/1cf495ba97114552ec359076767cf935b252b415.php new file mode 100644 index 0000000..d873c38 --- /dev/null +++ b/data/cache/PHPStan/1c/f4/1cf495ba97114552ec359076767cf935b252b415.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$offset";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/1d/67/1d6730ede242df41aefe1fb81aefa2b733c69a34.php b/data/cache/PHPStan/1d/67/1d6730ede242df41aefe1fb81aefa2b733c69a34.php new file mode 100644 index 0000000..fb03df9 --- /dev/null +++ b/data/cache/PHPStan/1d/67/1d6730ede242df41aefe1fb81aefa2b733c69a34.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@property-read";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PropertyTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:12:"propertyName";s:7:"$length";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/1e/c0/1ec0bba8e80104e915c67a47e41e6ccd3db9e775.php b/data/cache/PHPStan/1e/c0/1ec0bba8e80104e915c67a47e41e6ccd3db9e775.php new file mode 100644 index 0000000..12ae91c --- /dev/null +++ b/data/cache/PHPStan/1e/c0/1ec0bba8e80104e915c67a47e41e6ccd3db9e775.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$key";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/1f/8d/1f8d466ad5e8885af1903b1fe1cb1f36c817d1e1.php b/data/cache/PHPStan/1f/8d/1f8d466ad5e8885af1903b1fe1cb1f36c817d1e1.php new file mode 100644 index 0000000..67176c0 --- /dev/null +++ b/data/cache/PHPStan/1f/8d/1f8d466ad5e8885af1903b1fe1cb1f36c817d1e1.php @@ -0,0 +1,31 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NullableType.php-1603543737', + 'data' => + array ( + '95ad8a06fe5467ae6cee77cd274b107d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\NullableType', + 'functionName' => 'check', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/20/02/20028a8ecfb4fa0bf45ec7541fbd80ff7634a034.php b/data/cache/PHPStan/20/02/20028a8ecfb4fa0bf45ec7541fbd80ff7634a034.php new file mode 100644 index 0000000..e6f541c --- /dev/null +++ b/data/cache/PHPStan/20/02/20028a8ecfb4fa0bf45ec7541fbd80ff7634a034.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:5:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:8:"TDefault";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$key";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"TDefault";}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$default";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"TDefault";}}}s:11:"description";s:0:"";}}i:4;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:20:"OutOfBoundsException";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/24/c4/24c401c263b224b9ca501a1a0401a2d22dfbb4dd.php b/data/cache/PHPStan/24/c4/24c401c263b224b9ca501a1a0401a2d22dfbb4dd.php new file mode 100644 index 0000000..61cd79b --- /dev/null +++ b/data/cache/PHPStan/24/c4/24c401c263b224b9ca501a1a0401a2d22dfbb4dd.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:20:"\\OutOfRangeException";}s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/26/8d/268d6f57871df4f4386119949f81614448e9d071.php b/data/cache/PHPStan/26/8d/268d6f57871df4f4386119949f81614448e9d071.php new file mode 100644 index 0000000..2e3bbad --- /dev/null +++ b/data/cache/PHPStan/26/8d/268d6f57871df4f4386119949f81614448e9d071.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$offset";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/27/c5/27c584c6dba4696664fe4fa6318002eddf6f1590.php b/data/cache/PHPStan/27/c5/27c584c6dba4696664fe4fa6318002eddf6f1590.php new file mode 100644 index 0000000..680715d --- /dev/null +++ b/data/cache/PHPStan/27/c5/27c584c6dba4696664fe4fa6318002eddf6f1590.php @@ -0,0 +1,30 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/TypeInterface.php-1603535699', + 'data' => + array ( + 'fb8f2ee28beb66b9099b3b04ed20833e' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + 'functionName' => 'check', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/27/c6/27c6a66faa4da5b038ea4bae0f0cbbbf5af332a7.php b/data/cache/PHPStan/27/c6/27c6a66faa4da5b038ea4bae0f0cbbbf5af332a7.php new file mode 100644 index 0000000..a3e6fe8 --- /dev/null +++ b/data/cache/PHPStan/27/c6/27c6a66faa4da5b038ea4bae0f0cbbbf5af332a7.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/29/87/298753dd552f0d66eb99b8cfc191f2521ac04758.php b/data/cache/PHPStan/29/87/298753dd552f0d66eb99b8cfc191f2521ac04758.php new file mode 100644 index 0000000..8fe61b7 --- /dev/null +++ b/data/cache/PHPStan/29/87/298753dd552f0d66eb99b8cfc191f2521ac04758.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:8:"@package";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:21:"Cubicl\\StructureCheck";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/29/c0/29c0d800926232616d8c84ea5e7b7e5a581eb9fa.php b/data/cache/PHPStan/29/c0/29c0d800926232616d8c84ea5e7b7e5a581eb9fa.php new file mode 100644 index 0000000..69fcc1b --- /dev/null +++ b/data/cache/PHPStan/29/c0/29c0d800926232616d8c84ea5e7b7e5a581eb9fa.php @@ -0,0 +1,160 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php-1603538228', + 'data' => + array ( + 'df768a3f7dc764b624711a5215cc9c16' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template T + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\EnumType', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '246b93626d6092ed684069ab78be299a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** @var array */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\EnumType', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'T' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Cubicl\\StructureCheck\\Type\\EnumType', + 'functionName' => NULL, + )), + 'name' => 'T', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '075449f4cf74cd381283e9e4ba636feb' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param array $values + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\EnumType', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'T' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Cubicl\\StructureCheck\\Type\\EnumType', + 'functionName' => NULL, + )), + 'name' => 'T', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '3a32117658e0cf0241c3ee0c28bcce47' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param string $key + * @param T $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\EnumType', + 'functionName' => 'check', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'T' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Cubicl\\StructureCheck\\Type\\EnumType', + 'functionName' => NULL, + )), + 'name' => 'T', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/29/d8/29d8630041d3d6e11e5f22f0021d9ec45b4d28e0.php b/data/cache/PHPStan/29/d8/29d8630041d3d6e11e5f22f0021d9ec45b4d28e0.php new file mode 100644 index 0000000..10ba3ce --- /dev/null +++ b/data/cache/PHPStan/29/d8/29d8630041d3d6e11e5f22f0021d9ec45b4d28e0.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$key";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/2d/a7/2da7442a86f1add9f063f537221fc42a27aefbf3.php b/data/cache/PHPStan/2d/a7/2da7442a86f1add9f063f537221fc42a27aefbf3.php new file mode 100644 index 0000000..b33ea65 --- /dev/null +++ b/data/cache/PHPStan/2d/a7/2da7442a86f1add9f063f537221fc42a27aefbf3.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:30:"Representation of date period.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:46:"https://php.net/manual/en/class.dateperiod.php";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/2d/d9/2dd92d256fac6b068b605a5a15043d4a4fa32baa.php b/data/cache/PHPStan/2d/d9/2dd92d256fac6b068b605a5a15043d4a4fa32baa.php new file mode 100644 index 0000000..24da950 --- /dev/null +++ b/data/cache/PHPStan/2d/d9/2dd92d256fac6b068b605a5a15043d4a4fa32baa.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"Vector";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/2d/ed/2ded3132f4311288c6435765e82b9da62d91fd03.php b/data/cache/PHPStan/2d/ed/2ded3132f4311288c6435765e82b9da62d91fd03.php new file mode 100644 index 0000000..7564cdf --- /dev/null +++ b/data/cache/PHPStan/2d/ed/2ded3132f4311288c6435765e82b9da62d91fd03.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"\\Iterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"\\ArrayAccess";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/2e/12/2e12cbe97f9eb536b2153c10adc7133e676a45b0.php b/data/cache/PHPStan/2e/12/2e12cbe97f9eb536b2153c10adc7133e676a45b0.php new file mode 100644 index 0000000..e15021b --- /dev/null +++ b/data/cache/PHPStan/2e/12/2e12cbe97f9eb536b2153c10adc7133e676a45b0.php @@ -0,0 +1,9 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:44:"Class used to represent anonymous functions.";}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:290:"

Anonymous functions, implemented in PHP 5.3, yield objects of this type. +This fact used to be considered an implementation detail, but it can now be relied upon. +Starting with PHP 5.4, this class has methods that allow further control of the anonymous function after it has been created.";}i:2;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:201:"

Besides the methods listed here, this class also has an __invoke method. +This is for consistency with other classes that implement calling magic, as this method is not used for calling the function.";}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:50:"https://secure.php.net/manual/en/class.closure.php";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/2e/26/2e269e485984ddc55f3962b7479e31b1b9f2d8d9.php b/data/cache/PHPStan/2e/26/2e269e485984ddc55f3962b7479e31b1b9f2d8d9.php new file mode 100644 index 0000000..0c49e06 --- /dev/null +++ b/data/cache/PHPStan/2e/26/2e269e485984ddc55f3962b7479e31b1b9f2d8d9.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"Traversable";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/2e/2f/2e2f3bb1f35f58a1472e2db20e169921422513ff.php b/data/cache/PHPStan/2e/2f/2e2f3bb1f35f58a1472e2db20e169921422513ff.php new file mode 100644 index 0000000..45c662f --- /dev/null +++ b/data/cache/PHPStan/2e/2f/2e2f3bb1f35f58a1472e2db20e169921422513ff.php @@ -0,0 +1,13 @@ + '1603543737', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php', + 'modifiedTime' => 1603543737, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/2e/3e/2e3e73199710ae5c17113eb6677d189c815767be.php b/data/cache/PHPStan/2e/3e/2e3e73199710ae5c17113eb6677d189c815767be.php new file mode 100644 index 0000000..92648c0 --- /dev/null +++ b/data/cache/PHPStan/2e/3e/2e3e73199710ae5c17113eb6677d189c815767be.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:5:"$args";s:11:"description";s:0:"";}}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/2e/9a/2e9ae067cd96c4393ffd0adce50e1f523be8bab5.php b/data/cache/PHPStan/2e/9a/2e9ae067cd96c4393ffd0adce50e1f523be8bab5.php new file mode 100644 index 0000000..1d1b662 --- /dev/null +++ b/data/cache/PHPStan/2e/9a/2e9ae067cd96c4393ffd0adce50e1f523be8bab5.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/2f/60/2f6046ac822d7a59a7c50279aa61a17b8f7fde8d.php b/data/cache/PHPStan/2f/60/2f6046ac822d7a59a7c50279aa61a17b8f7fde8d.php new file mode 100644 index 0000000..2184d51 --- /dev/null +++ b/data/cache/PHPStan/2f/60/2f6046ac822d7a59a7c50279aa61a17b8f7fde8d.php @@ -0,0 +1,31 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/AnyType.php-1603543737', + 'data' => + array ( + '5e6e56807b68724f81d92cd5093bb74b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\AnyType', + 'functionName' => 'check', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/31/a4/31a4236008d14b2699263a18271c5ccd8b633f9b.php b/data/cache/PHPStan/31/a4/31a4236008d14b2699263a18271c5ccd8b633f9b.php new file mode 100644 index 0000000..8f50637 --- /dev/null +++ b/data/cache/PHPStan/31/a4/31a4236008d14b2699263a18271c5ccd8b633f9b.php @@ -0,0 +1,741 @@ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub-1603454189', + 'data' => + array ( + '5fefa72ba6c5ecec772c5b030d5047b8' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue + * @implements \\Iterator + * @implements \\ArrayAccess + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplDoublyLinkedList', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'be16ceb69e39fe489d6579302acbcba6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param int $index + * @param TValue $newval + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplDoublyLinkedList', + 'functionName' => 'add', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplDoublyLinkedList', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '53699c87e61d55ec3e526afeb680db27' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplDoublyLinkedList', + 'functionName' => 'pop', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplDoublyLinkedList', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '2a5400711b16a1e637887ddc2bd07b6f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplDoublyLinkedList', + 'functionName' => 'shift', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplDoublyLinkedList', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '80a77c52931f5b7f0cb3989a20dceb1c' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue $value + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplDoublyLinkedList', + 'functionName' => 'push', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplDoublyLinkedList', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '94c32a64cb21e09f40f0a0fcc030cae6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue $value + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplDoublyLinkedList', + 'functionName' => 'unshift', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplDoublyLinkedList', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'd83b96ac119a858f88c3a268c9a76493' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplDoublyLinkedList', + 'functionName' => 'top', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplDoublyLinkedList', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '426e73813fa5c6970c6568999122dc78' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplDoublyLinkedList', + 'functionName' => 'bottom', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplDoublyLinkedList', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '81439ba604c1a430f7b67736f2e4294d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue + * @extends \\SplDoublyLinkedList + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplQueue', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '9a7bec06e7b94ad1920ebaf0de9602d1' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue $value + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplQueue', + 'functionName' => 'enqueue', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplQueue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '714c20d1d100313c4bc2512c073df682' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplQueue', + 'functionName' => 'dequeue', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplQueue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '421af62be6066b7adab273fdf120b9f6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TPriority + * @template TValue + * + * @implements \\Iterator + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplPriorityQueue', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'c63d4f9d43241883337ab6cdf2c7de50' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TPriority $priority1 + * @param TPriority $priority2 + * @return int + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplPriorityQueue', + 'functionName' => 'compare', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TPriority' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplPriorityQueue', + 'functionName' => NULL, + )), + 'name' => 'TPriority', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplPriorityQueue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'afcc04f65080f2a768d1047988332bfa' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue $value + * @param TPriority $priority + * @return true + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplPriorityQueue', + 'functionName' => 'insert', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TPriority' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplPriorityQueue', + 'functionName' => NULL, + )), + 'name' => 'TPriority', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplPriorityQueue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'cd4fb3c6c3ada2f32dae6bb29151df33' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TPriority|TValue|array{priority: TPriority, data: TValue} + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplPriorityQueue', + 'functionName' => 'top', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TPriority' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplPriorityQueue', + 'functionName' => NULL, + )), + 'name' => 'TPriority', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplPriorityQueue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '8549a36c30a9540905826e11b91af607' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TPriority|TValue|array{priority: TPriority, data: TValue} + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplPriorityQueue', + 'functionName' => 'extract', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TPriority' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplPriorityQueue', + 'functionName' => NULL, + )), + 'name' => 'TPriority', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplPriorityQueue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '1fa959ebf295cf38086c58989b819679' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TPriority|TValue|array{priority: TPriority, data: TValue} + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplPriorityQueue', + 'functionName' => 'current', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TPriority' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplPriorityQueue', + 'functionName' => NULL, + )), + 'name' => 'TPriority', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplPriorityQueue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/32/f5/32f5fec45d4b32f3210ea2d26ada80cce97bf93a.php b/data/cache/PHPStan/32/f5/32f5fec45d4b32f3210ea2d26ada80cce97bf93a.php new file mode 100644 index 0000000..29ac168 --- /dev/null +++ b/data/cache/PHPStan/32/f5/32f5fec45d4b32f3210ea2d26ada80cce97bf93a.php @@ -0,0 +1,32 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php-1603543737', + 'data' => + array ( + '32d953ad135b9f9d28beb9e797622587' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\ListType', + 'functionName' => 'check', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/33/cb/33cbab2a0375cfe7eab5f365201a0ff6bd379f52.php b/data/cache/PHPStan/33/cb/33cbab2a0375cfe7eab5f365201a0ff6bd379f52.php new file mode 100644 index 0000000..74026e3 --- /dev/null +++ b/data/cache/PHPStan/33/cb/33cbab2a0375cfe7eab5f365201a0ff6bd379f52.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:17:"IteratorAggregate";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"ArrayAccess";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/34/57/34574fdc7ea28d1d204545e2388b5127aae5afa5.php b/data/cache/PHPStan/34/57/34574fdc7ea28d1d204545e2388b5127aae5afa5.php new file mode 100644 index 0000000..d72f8e9 --- /dev/null +++ b/data/cache/PHPStan/34/57/34574fdc7ea28d1d204545e2388b5127aae5afa5.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/37/e2/37e2585f41ebe98e95c23da14cc321a0e47b0a39.php b/data/cache/PHPStan/37/e2/37e2585f41ebe98e95c23da14cc321a0e47b0a39.php new file mode 100644 index 0000000..68edc04 --- /dev/null +++ b/data/cache/PHPStan/37/e2/37e2585f41ebe98e95c23da14cc321a0e47b0a39.php @@ -0,0 +1,13 @@ + '1603543737', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NullableType.php', + 'modifiedTime' => 1603543737, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/38/04/38045ba278fa9b1c1e65799631956e11d71b7594.php b/data/cache/PHPStan/38/04/38045ba278fa9b1c1e65799631956e11d71b7594.php new file mode 100644 index 0000000..e139e1d --- /dev/null +++ b/data/cache/PHPStan/38/04/38045ba278fa9b1c1e65799631956e11d71b7594.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:14:"ErrorInterface";}}}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/38/7d/387d6413d19f39beb6600348ff66de7ea6093239.php b/data/cache/PHPStan/38/7d/387d6413d19f39beb6600348ff66de7ea6093239.php new file mode 100644 index 0000000..2c79b99 --- /dev/null +++ b/data/cache/PHPStan/38/7d/387d6413d19f39beb6600348ff66de7ea6093239.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/3c/95/3c952c875187cfceaa9d45d804265a237e4d30ab.php b/data/cache/PHPStan/3c/95/3c952c875187cfceaa9d45d804265a237e4d30ab.php new file mode 100644 index 0000000..c200198 --- /dev/null +++ b/data/cache/PHPStan/3c/95/3c952c875187cfceaa9d45d804265a237e4d30ab.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"false";}}}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/3e/26/3e26b31a78a21b4213843359a4f95e68bf222ed5.php b/data/cache/PHPStan/3e/26/3e26b31a78a21b4213843359a4f95e68bf222ed5.php new file mode 100644 index 0000000..23259c2 --- /dev/null +++ b/data/cache/PHPStan/3e/26/3e26b31a78a21b4213843359a4f95e68bf222ed5.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"object";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/40/d6/40d6be0cf227d5a9f6426dee54d0a4b47727af5f.php b/data/cache/PHPStan/40/d6/40d6be0cf227d5a9f6426dee54d0a4b47727af5f.php new file mode 100644 index 0000000..cb274a1 --- /dev/null +++ b/data/cache/PHPStan/40/d6/40d6be0cf227d5a9f6426dee54d0a4b47727af5f.php @@ -0,0 +1,13 @@ + '1603543737', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php', + 'modifiedTime' => 1603543737, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/42/ce/42ce094bf24aa8bbe2c88b7f72201a06e42b58b4.php b/data/cache/PHPStan/42/ce/42ce094bf24aa8bbe2c88b7f72201a06e42b58b4.php new file mode 100644 index 0000000..ecdf154 --- /dev/null +++ b/data/cache/PHPStan/42/ce/42ce094bf24aa8bbe2c88b7f72201a06e42b58b4.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Iterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:17:"IteratorAggregate";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"ArrayAccess";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/42/d3/42d391c6764f72d0ee5973f27e876cf4100b36f4.php b/data/cache/PHPStan/42/d3/42d391c6764f72d0ee5973f27e876cf4100b36f4.php new file mode 100644 index 0000000..b0d6ef7 --- /dev/null +++ b/data/cache/PHPStan/42/d3/42d391c6764f72d0ee5973f27e876cf4100b36f4.php @@ -0,0 +1,13 @@ + '1603454189', + 'data' => + array ( + 0 => + array ( + 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', + 'modifiedTime' => 1603454189, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/42/f8/42f8a9f3d5ffa98ae51a052d21766469fdd9808a.php b/data/cache/PHPStan/42/f8/42f8a9f3d5ffa98ae51a052d21766469fdd9808a.php new file mode 100644 index 0000000..ecc51bf --- /dev/null +++ b/data/cache/PHPStan/42/f8/42f8a9f3d5ffa98ae51a052d21766469fdd9808a.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/43/4c/434c31ff1e0bcac52251686abedbaa3f6c3ae48f.php b/data/cache/PHPStan/43/4c/434c31ff1e0bcac52251686abedbaa3f6c3ae48f.php new file mode 100644 index 0000000..4563054 --- /dev/null +++ b/data/cache/PHPStan/43/4c/434c31ff1e0bcac52251686abedbaa3f6c3ae48f.php @@ -0,0 +1,32 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php-1603543737', + 'data' => + array ( + '5800c7de6c8e0ee228ea21553002119e' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\FloatType', + 'functionName' => 'check', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/43/51/435148cb1ef15a911b9002deb99f629a5db739c1.php b/data/cache/PHPStan/43/51/435148cb1ef15a911b9002deb99f629a5db739c1.php new file mode 100644 index 0000000..a2cefc4 --- /dev/null +++ b/data/cache/PHPStan/43/51/435148cb1ef15a911b9002deb99f629a5db739c1.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:5:"TKey2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"iterable";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TKey2";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TKey2";}}}i:1;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/44/06/4406ae5d4f407633e6d3dfac02e55c8d3c749459.php b/data/cache/PHPStan/44/06/4406ae5d4f407633e6d3dfac02e55c8d3c749459.php new file mode 100644 index 0000000..e3f23ea --- /dev/null +++ b/data/cache/PHPStan/44/06/4406ae5d4f407633e6d3dfac02e55c8d3c749459.php @@ -0,0 +1,6 @@ + '1603543737-v2', + 'data' => false, +)); \ No newline at end of file diff --git a/data/cache/PHPStan/45/93/4593abb322bb5b82328469fcd6a02d65e457268e.php b/data/cache/PHPStan/45/93/4593abb322bb5b82328469fcd6a02d65e457268e.php new file mode 100644 index 0000000..ec53e5d --- /dev/null +++ b/data/cache/PHPStan/45/93/4593abb322bb5b82328469fcd6a02d65e457268e.php @@ -0,0 +1,7 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:100:"A class for working with PHP tokens, which is an alternative to +the {@see token_get_all()} function.";}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@since";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:3:"8.0";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/45/b1/45b12de1771107cc9ca76b4c7d24c932c2736042.php b/data/cache/PHPStan/45/b1/45b12de1771107cc9ca76b4c7d24c932c2736042.php new file mode 100644 index 0000000..5acd4be --- /dev/null +++ b/data/cache/PHPStan/45/b1/45b12de1771107cc9ca76b4c7d24c932c2736042.php @@ -0,0 +1,8 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Error.php-1603535529', + 'data' => + array ( + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/46/14/46147dd866c209e91dbc46d4e561032066b4a0d5.php b/data/cache/PHPStan/46/14/46147dd866c209e91dbc46d4e561032066b4a0d5.php new file mode 100644 index 0000000..cb6f53e --- /dev/null +++ b/data/cache/PHPStan/46/14/46147dd866c209e91dbc46d4e561032066b4a0d5.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";N;s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/46/7e/467e02e9be318a9f35c04e46dc4dbffbf8ccb17d.php b/data/cache/PHPStan/46/7e/467e02e9be318a9f35c04e46dc4dbffbf8ccb17d.php new file mode 100644 index 0000000..710a845 --- /dev/null +++ b/data/cache/PHPStan/46/7e/467e02e9be318a9f35c04e46dc4dbffbf8ccb17d.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/46/a5/46a58eeb7f10f67a184179d1466630a60f8aecb6.php b/data/cache/PHPStan/46/a5/46a58eeb7f10f67a184179d1466630a60f8aecb6.php new file mode 100644 index 0000000..1e18d83 --- /dev/null +++ b/data/cache/PHPStan/46/a5/46a58eeb7f10f67a184179d1466630a60f8aecb6.php @@ -0,0 +1,13 @@ + '1596634130', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', + 'modifiedTime' => 1596634130, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/47/39/4739238fece5b6278e8e7af6750583bc76434652.php b/data/cache/PHPStan/47/39/4739238fece5b6278e8e7af6750583bc76434652.php new file mode 100644 index 0000000..6b63c99 --- /dev/null +++ b/data/cache/PHPStan/47/39/4739238fece5b6278e8e7af6750583bc76434652.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/47/c3/47c3560819bea06d90a35212f02de53c8f2bdae0.php b/data/cache/PHPStan/47/c3/47c3560819bea06d90a35212f02de53c8f2bdae0.php new file mode 100644 index 0000000..6c6b061 --- /dev/null +++ b/data/cache/PHPStan/47/c3/47c3560819bea06d90a35212f02de53c8f2bdae0.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$map";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/47/ef/47ef13d6e0c3b5230b07e99478a35bf90d96fdb3.php b/data/cache/PHPStan/47/ef/47ef13d6e0c3b5230b07e99478a35bf90d96fdb3.php new file mode 100644 index 0000000..1b31277 --- /dev/null +++ b/data/cache/PHPStan/47/ef/47ef13d6e0c3b5230b07e99478a35bf90d96fdb3.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:41:"Interface to create an external Iterator.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:53:"https://php.net/manual/en/class.iteratoraggregate.php";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/49/e4/49e44b3598547d4127fc54031158e98a8ae4f0a7.php b/data/cache/PHPStan/49/e4/49e44b3598547d4127fc54031158e98a8ae4f0a7.php new file mode 100644 index 0000000..11444f9 --- /dev/null +++ b/data/cache/PHPStan/49/e4/49e44b3598547d4127fc54031158e98a8ae4f0a7.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"iterable";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"Deque";}s:12:"genericTypes";a:1:{i:0;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/4a/7d/4a7d88391f44783895cc8b2741453cefda6df773.php b/data/cache/PHPStan/4a/7d/4a7d88391f44783895cc8b2741453cefda6df773.php new file mode 100644 index 0000000..64d2556 --- /dev/null +++ b/data/cache/PHPStan/4a/7d/4a7d88391f44783895cc8b2741453cefda6df773.php @@ -0,0 +1,13 @@ + '1603538914', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Result.php', + 'modifiedTime' => 1603538914, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/4c/53/4c53c8b2172a850d44a9a01321703b1a5f27ec7f.php b/data/cache/PHPStan/4c/53/4c53c8b2172a850d44a9a01321703b1a5f27ec7f.php new file mode 100644 index 0000000..6f29bc1 --- /dev/null +++ b/data/cache/PHPStan/4c/53/4c53c8b2172a850d44a9a01321703b1a5f27ec7f.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:19:"\\UnderflowException";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/4c/7b/4c7b0341d7238064b7f8305fc1f461812e25e167.php b/data/cache/PHPStan/4c/7b/4c7b0341d7238064b7f8305fc1f461812e25e167.php new file mode 100644 index 0000000..9cb76ec --- /dev/null +++ b/data/cache/PHPStan/4c/7b/4c7b0341d7238064b7f8305fc1f461812e25e167.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:1;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/4e/48/4e4869047918fb5c9b4c7f4915cf28ff0fe10ac8.php b/data/cache/PHPStan/4e/48/4e4869047918fb5c9b4c7f4915cf28ff0fe10ac8.php new file mode 100644 index 0000000..3690f96 --- /dev/null +++ b/data/cache/PHPStan/4e/48/4e4869047918fb5c9b4c7f4915cf28ff0fe10ac8.php @@ -0,0 +1,13 @@ + '1603535529', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Error.php', + 'modifiedTime' => 1603535529, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/52/eb/52ebaeecbbd42ba1d6b9e020ca91142c6bbacbe0.php b/data/cache/PHPStan/52/eb/52ebaeecbbd42ba1d6b9e020ca91142c6bbacbe0.php new file mode 100644 index 0000000..f8c3b2c --- /dev/null +++ b/data/cache/PHPStan/52/eb/52ebaeecbbd42ba1d6b9e020ca91142c6bbacbe0.php @@ -0,0 +1,13 @@ + '1603454189', + 'data' => + array ( + 0 => + array ( + 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', + 'modifiedTime' => 1603454189, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/52/f0/52f06084fdfece61c3a5af96a3364bedeb0aba1a.php b/data/cache/PHPStan/52/f0/52f06084fdfece61c3a5af96a3364bedeb0aba1a.php new file mode 100644 index 0000000..9781eaf --- /dev/null +++ b/data/cache/PHPStan/52/f0/52f06084fdfece61c3a5af96a3364bedeb0aba1a.php @@ -0,0 +1,30 @@ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub-1603454189', + 'data' => + array ( + '0d0159bcc474cea05a5b41536bcc08a7' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @implements Traversable> + * @link https://php.net/manual/en/class.pdostatement.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'PDOStatement', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/53/15/53158ee3293381ad62441275b33d993778d46c6b.php b/data/cache/PHPStan/53/15/53158ee3293381ad62441275b33d993778d46c6b.php new file mode 100644 index 0000000..fc45a66 --- /dev/null +++ b/data/cache/PHPStan/53/15/53158ee3293381ad62441275b33d993778d46c6b.php @@ -0,0 +1,2616 @@ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/../../../../../jetbrains/phpstorm-stubs/Core/Core_c.stub-1603454189', + 'data' => + array ( + 'e1355ee07d4c0287ff25a8be786bc335' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Created by typecasting to object. + * @link https://php.net/manual/en/reserved.classes.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'stdClass', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '26b3642513377bdf1281315acb1374ae' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @link https://wiki.php.net/rfc/iterable + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'iterable', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '2cf824655c7c7a579616ab28e62861bd' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Interface to detect if a class is traversable using foreach. + * Abstract base interface that cannot be implemented alone. + * Instead it must be implemented by either {@see IteratorAggregate} or {@see Iterator}. + * + * @link https://php.net/manual/en/class.traversable.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Traversable', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '2314aa898e143deb4013de67bac837d5' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Interface to create an external Iterator. + * @link https://php.net/manual/en/class.iteratoraggregate.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'IteratorAggregate', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'cbd8dac196301bab22991775e13df444' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Retrieve an external iterator + * @link https://php.net/manual/en/iteratoraggregate.getiterator.php + * @return Traversable An instance of an object implementing Iterator or + * Traversable + * @throws Exception on failure. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'IteratorAggregate', + 'functionName' => 'getIterator', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'b714d9498d33ec66f1913871de7be090' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Interface for external iterators or objects that can be iterated + * themselves internally. + * @link https://php.net/manual/en/class.iterator.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Iterator', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'f868e8596c55baf4b3a87b9e09bc159c' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Return the current element + * @link https://php.net/manual/en/iterator.current.php + * @return mixed Can return any type. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Iterator', + 'functionName' => 'current', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e66f225e6d97f9a7f83168f98b3eaeed' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Move forward to next element + * @link https://php.net/manual/en/iterator.next.php + * @return void Any returned value is ignored. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Iterator', + 'functionName' => 'next', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '9b6099e5e7402a5a8bf5855798c67ccf' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Return the key of the current element + * @link https://php.net/manual/en/iterator.key.php + * @return string|float|int|bool|null scalar on success, or null on failure. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Iterator', + 'functionName' => 'key', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '62ae9b3793ff598231217800a73ac7b4' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Checks if current position is valid + * @link https://php.net/manual/en/iterator.valid.php + * @return bool The return value will be casted to boolean and then evaluated. + * Returns true on success or false on failure. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Iterator', + 'functionName' => 'valid', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'aa0f1586267dd9e67fbc94acc080d8dc' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Rewind the Iterator to the first element + * @link https://php.net/manual/en/iterator.rewind.php + * @return void Any returned value is ignored. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Iterator', + 'functionName' => 'rewind', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '6549048d5c29a4ba5f6855476fe5163e' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Interface to provide accessing objects as arrays. + * @link https://php.net/manual/en/class.arrayaccess.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayAccess', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'fd51a829b13349ad3a1b3a690db62e94' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Whether a offset exists + * @link https://php.net/manual/en/arrayaccess.offsetexists.php + * @param mixed $offset

+ * An offset to check for. + *

+ * @return bool true on success or false on failure. + *

+ *

+ * The return value will be casted to boolean if non-boolean was returned. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayAccess', + 'functionName' => 'offsetExists', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '26610c289545ed332c2e4840d5d604a6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Offset to retrieve + * @link https://php.net/manual/en/arrayaccess.offsetget.php + * @param mixed $offset

+ * The offset to retrieve. + *

+ * @return mixed Can return all value types. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayAccess', + 'functionName' => 'offsetGet', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '32ac5914229f06442beba7eeb990af8f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Offset to set + * @link https://php.net/manual/en/arrayaccess.offsetset.php + * @param mixed $offset

+ * The offset to assign the value to. + *

+ * @param mixed $value

+ * The value to set. + *

+ * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayAccess', + 'functionName' => 'offsetSet', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'eeb7d6301b4d749980d50199edc36499' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Offset to unset + * @link https://php.net/manual/en/arrayaccess.offsetunset.php + * @param mixed $offset

+ * The offset to unset. + *

+ * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayAccess', + 'functionName' => 'offsetUnset', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e03d006c7c4e5e409b6da66041886620' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Interface for customized serializing. + * @link https://php.net/manual/en/class.serializable.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Serializable', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '2e03bf0b2bcc2f9f9b486f600fe353ba' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * String representation of object. + * @link https://php.net/manual/en/serializable.serialize.php + * @return string|null The string representation of the object or null + * @throws Exception Returning other type than string or null + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Serializable', + 'functionName' => 'serialize', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '69a5711d06b300f5b3567162689c595f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Constructs the object. + * @link https://php.net/manual/en/serializable.unserialize.php + * @param string $serialized The string representation of the object. + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Serializable', + 'functionName' => 'unserialize', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'f82e96121e8b55e3df298c5115f21a52' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Throwable is the base interface for any object that can be thrown via a throw statement in PHP 7, + * including Error and Exception. + * @link https://php.net/manual/en/class.throwable.php + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Throwable', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '8650975d68814009a2f08857bdd8e061' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the message + * @link https://php.net/manual/en/throwable.getmessage.php + * @return string + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Throwable', + 'functionName' => 'getMessage', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '19e74186fa410cb2fe389ed371748bec' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the exception code + * @link https://php.net/manual/en/throwable.getcode.php + * @return int

+ * Returns the exception code as integer in + * {@see Exception} but possibly as other type in + * {@see Exception} descendants (for example as + * string in {@see PDOException}). + *

+ * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Throwable', + 'functionName' => 'getCode', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e927137c568ac832dcdb5e78d7c28248' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the file in which the exception occurred + * @link https://php.net/manual/en/throwable.getfile.php + * @return string Returns the name of the file from which the object was thrown. + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Throwable', + 'functionName' => 'getFile', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'c1e55b33c7ba136788f1d99c19fcca1c' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the line on which the object was instantiated + * @link https://php.net/manual/en/throwable.getline.php + * @return int Returns the line number where the thrown object was instantiated. + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Throwable', + 'functionName' => 'getLine', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'dd844293bedab6a057016032248dae9f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the stack trace + * @link https://php.net/manual/en/throwable.gettrace.php + * @return array

+ * Returns the stack trace as an array in the same format as + * {@see debug_backtrace()}. + *

+ * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Throwable', + 'functionName' => 'getTrace', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '7c628be0390e022c1127f940502028c8' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the stack trace as a string + * @link https://php.net/manual/en/throwable.gettraceasstring.php + * @return string Returns the stack trace as a string. + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Throwable', + 'functionName' => 'getTraceAsString', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'cd201835f3d654b70461e72dca2c74c3' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns the previous Throwable + * @link https://php.net/manual/en/throwable.getprevious.php + * @return Throwable Returns the previous {@see Throwable} if available, or NULL otherwise. + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Throwable', + 'functionName' => 'getPrevious', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'a271702835a5df68e49d13e4e585feb8' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets a string representation of the thrown object + * @link https://php.net/manual/en/throwable.tostring.php + * @return string

Returns the string representation of the thrown object.

+ * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Throwable', + 'functionName' => '__toString', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '40013d3495375df4d89ebf65f21291a6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Exception is the base class for + * all Exceptions. + * @link https://php.net/manual/en/class.exception.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Exception', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '6bbdead98f419b9047d6693c84fbfe77' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** The error message */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Exception', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '1d3e8d44dd5f7d1e4bd39ab7424283aa' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** The error code */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Exception', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'a8382bd75b1ad7b7f21faf05fcbf7536' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** The filename where the error happened */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Exception', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '85639513285bb7b5314b82b4f177d8b0' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** The line where the error happened */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Exception', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'c712ab1f9e3c2fd2b9451b97ab289316' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Clone the exception + * Tries to clone the Exception, which results in Fatal error. + * @link https://php.net/manual/en/exception.clone.php + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Exception', + 'functionName' => '__clone', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'a9068396625c48f82613e645ae7eec43' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Construct the exception. Note: The message is NOT binary safe. + * @link https://php.net/manual/en/exception.construct.php + * @param string $message [optional] The Exception message to throw. + * @param int $code [optional] The Exception code. + * @param Throwable $previous [optional] The previous throwable used for the exception chaining. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Exception', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'fef3b8884a397bb919c5354f91c476c9' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the Exception message + * @link https://php.net/manual/en/exception.getmessage.php + * @return string the Exception message as a string. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Exception', + 'functionName' => 'getMessage', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '8276cf287a938517fa53bfdab7afc6c6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the Exception code + * @link https://php.net/manual/en/exception.getcode.php + * @return mixed|int the exception code as integer in + * Exception but possibly as other type in + * Exception descendants (for example as + * string in PDOException). + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Exception', + 'functionName' => 'getCode', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '632bede3d6365ddb6444fe2c47fcd766' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the file in which the exception occurred + * @link https://php.net/manual/en/exception.getfile.php + * @return string the filename in which the exception was created. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Exception', + 'functionName' => 'getFile', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '1baddc718e9dcdc622477df3fdee42b9' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the line in which the exception occurred + * @link https://php.net/manual/en/exception.getline.php + * @return int the line number where the exception was created. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Exception', + 'functionName' => 'getLine', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'a9d557928c6a3685099a632407f45f52' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the stack trace + * @link https://php.net/manual/en/exception.gettrace.php + * @return array the Exception stack trace as an array. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Exception', + 'functionName' => 'getTrace', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'a9b7bb2d4cb3d47ca5e9df5618dd7a9d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns previous Exception + * @link https://php.net/manual/en/exception.getprevious.php + * @return Exception the previous Exception if available + * or null otherwise. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Exception', + 'functionName' => 'getPrevious', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '35e38c179bb3e625c3e28a0237434455' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the stack trace as a string + * @link https://php.net/manual/en/exception.gettraceasstring.php + * @return string the Exception stack trace as a string. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Exception', + 'functionName' => 'getTraceAsString', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '4d55df39e10e7c39f67a3b594d13a5ec' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * String representation of the exception + * @link https://php.net/manual/en/exception.tostring.php + * @return string the string representation of the exception. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Exception', + 'functionName' => '__toString', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'fd6f75e10b4414074819e46606cda996' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Error is the base class for all internal PHP error exceptions. + * @link https://php.net/manual/en/class.error.php + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Error', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '8e25b672f2b2e1d0657996da976efa2a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** The error message */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Error', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '64a5bb2e79c10812496ee2380228682d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** The error code */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Error', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '48f25bc380105a9926b0ff76b018fcd1' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** The filename where the error happened */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Error', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'f9b5bc7e5552f07848b3d988ad10504b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** The line where the error happened */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Error', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '3bb73f0a44b901c0d0e6e50eddd8fe3b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Construct the error object. + * @link https://php.net/manual/en/error.construct.php + * @param string $message [optional] The Error message to throw. + * @param int $code [optional] The Error code. + * @param Throwable $previous [optional] The previous throwable used for the exception chaining. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Error', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'eb0f6fd8b7db8786305e39f680e8fdfb' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the exception code + * @link https://php.net/manual/en/throwable.getcode.php + * @return int

+ * Returns the exception code as integer in + * {@see Exception} but possibly as other type in + * {@see Exception} descendants (for example as + * string in {@see PDOException}). + *

+ * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Error', + 'functionName' => 'getCode', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '15662eecb11c3eb837a41c5b4325b2ec' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the file in which the exception occurred + * @link https://php.net/manual/en/throwable.getfile.php + * @return string Returns the name of the file from which the object was thrown. + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Error', + 'functionName' => 'getFile', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '47954cb40957418af1c13755e720d67a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the line on which the object was instantiated + * @link https://php.net/manual/en/throwable.getline.php + * @return int Returns the line number where the thrown object was instantiated. + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Error', + 'functionName' => 'getLine', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'fb1a02576f952424ad8eb80a5e905035' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the stack trace + * @link https://php.net/manual/en/throwable.gettrace.php + * @return array

+ * Returns the stack trace as an array in the same format as + * {@see debug_backtrace()}. + *

+ * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Error', + 'functionName' => 'getTrace', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '71cb3a4b92fbb15cfc4d7008106224c6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the stack trace as a string + * @link https://php.net/manual/en/throwable.gettraceasstring.php + * @return string Returns the stack trace as a string. + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Error', + 'functionName' => 'getTraceAsString', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '77a282ec02ce7b79a5017c658038dd4d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns the previous Throwable + * @link https://php.net/manual/en/throwable.getprevious.php + * @return Throwable Returns the previous {@see Throwable} if available, or NULL otherwise. + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Error', + 'functionName' => 'getPrevious', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'cc144c81076d8e0bf02cf1fc9563786b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets a string representation of the thrown object + * @link https://php.net/manual/en/throwable.tostring.php + * @return string

Returns the string representation of the thrown object.

+ * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Error', + 'functionName' => '__toString', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'ed9d78871fa7cf7acdf7e1292c9e93b0' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Clone the error + * Error can not be clone, so this method results in fatal error. + * @return void + * @link https://php.net/manual/en/error.clone.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Error', + 'functionName' => '__clone', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'a5ffc83112d5c2987b48f589c31e7be1' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * There are three scenarios where a TypeError may be thrown. + * The first is where the argument type being passed to a function does not match its corresponding declared + * parameter type. The second is where a value being returned from a function does not match the declared function return type. The third is where an + * invalid number of arguments are passed to a built-in PHP function (strict mode only). + * @link https://php.net/manual/en/class.typeerror.php + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'TypeError', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '1c3a357b2b000e9a307e644bd223d295' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * ParseError is thrown when an error occurs while parsing PHP code, such as when {@see eval()} is called. + * @link https://php.net/manual/en/class.parseerror.php + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ParseError', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'ff904009db3b785b6a05ec0a7b4b4f18' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * ArgumentCountError is thrown when too few arguments are passed to a user + * defined routine. + * + * @since 7.1 + * @see https://php.net/migration71.incompatible#migration71.incompatible.too-few-arguments-exception + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArgumentCountError', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'f87ee2938d12aa6c02f9af135d94999a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * ArithmeticError is thrown when an error occurs while performing mathematical operations. + * In PHP 7.0, these errors include attempting to perform a bitshift by a negative amount, + * and any call to {@see intdiv()} that would result in a value outside the possible bounds of an integer. + * @link https://php.net/manual/en/class.arithmeticerror.php + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArithmeticError', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '02c5e572e0eb3001f6f478941c47bfbd' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Class CompileError + * @link https://secure.php.net/manual/en/class.compileerror.php + * @since 7.3 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'CompileError', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '13e4c972bc460013b3ef42128e65d1e4' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * DivisionByZeroError is thrown when an attempt is made to divide a number by zero. + * @link https://php.net/manual/en/class.divisionbyzeroerror.php + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DivisionByZeroError', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '6f7c7935f0571052420b2da00cecd464' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @since 8.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'UnhandledMatchError', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '655ba08f55f4d3d6f2dacb9ae0e9da68' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * An Error Exception. + * @link https://php.net/manual/en/class.errorexception.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ErrorException', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '8bae00f043a4a85263b6f2bd80666992' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Constructs the exception + * @link https://php.net/manual/en/errorexception.construct.php + * @param string $message [optional] The Exception message to throw. + * @param int $code [optional] The Exception code. + * @param int $severity [optional] The severity level of the exception. + * @param string $filename [optional] The filename where the exception is thrown. + * @param int $lineno [optional] The line number where the exception is thrown. + * @param Exception $previous [optional] The previous exception used for the exception chaining. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ErrorException', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'ad5d715134c19a2477c152e4dc758a5a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the exception severity + * @link https://php.net/manual/en/errorexception.getseverity.php + * @return int the severity level of the exception. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ErrorException', + 'functionName' => 'getSeverity', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'f7f3190563dda1769c1d206084b3af43' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Class used to represent anonymous functions. + *

Anonymous functions, implemented in PHP 5.3, yield objects of this type. + * This fact used to be considered an implementation detail, but it can now be relied upon. + * Starting with PHP 5.4, this class has methods that allow further control of the anonymous function after it has been created. + *

Besides the methods listed here, this class also has an __invoke method. + * This is for consistency with other classes that implement calling magic, as this method is not used for calling the function. + * @link https://secure.php.net/manual/en/class.closure.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Closure', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '8d3de81f46a6ee2982e95fa1ee46185e' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * This method exists only to disallow instantiation of the Closure class. + * Objects of this class are created in the fashion described on the anonymous functions page. + * @link https://secure.php.net/manual/en/closure.construct.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Closure', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'f367a012007c7a9814e33b0bf0e3b99a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * This is for consistency with other classes that implement calling magic, + * as this method is not used for calling the function. + * @param mixed ...$_ [optional] + * @return mixed + * @link https://secure.php.net/manual/en/class.closure.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Closure', + 'functionName' => '__invoke', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '5e1f53dfce06ecfeb6e7dd4ce6a9823b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Duplicates the closure with a new bound object and class scope + * @link https://secure.php.net/manual/en/closure.bindto.php + * @param object|null $newthis The object to which the given anonymous function should be bound, or NULL for the closure to be unbound. + * @param mixed $newscope The class scope to which associate the closure is to be associated, or \'static\' to keep the current one. + * If an object is given, the type of the object will be used instead. + * This determines the visibility of protected and private methods of the bound object. + * @return Closure|false Returns the newly created Closure object or FALSE on failure + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Closure', + 'functionName' => 'bindTo', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'a7c82baf4bed4477d09d42229393b751' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * This method is a static version of Closure::bindTo(). + * See the documentation of that method for more information. + * @link https://secure.php.net/manual/en/closure.bind.php + * @param Closure $closure The anonymous functions to bind. + * @param object|null $newthis The object to which the given anonymous function should be bound, or NULL for the closure to be unbound. + * @param mixed $newscope The class scope to which associate the closure is to be associated, or \'static\' to keep the current one. + * If an object is given, the type of the object will be used instead. + * This determines the visibility of protected and private methods of the bound object. + * @return Closure|false Returns the newly created Closure object or FALSE on failure + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Closure', + 'functionName' => 'bind', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '4d74944742bec594e04c2c8ef50ca1a9' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Temporarily binds the closure to newthis, and calls it with any given parameters. + * @link https://php.net/manual/en/closure.call.php + * @param object $newThis The object to bind the closure to for the duration of the call. + * @param mixed $parameters [optional] Zero or more parameters, which will be given as parameters to the closure. + * @return mixed + * @since 7.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Closure', + 'functionName' => 'call', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '595ceb1226178b4a6f277a5bf4ed2257' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param callable $callable + * @return Closure + * @since 7.1 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Closure', + 'functionName' => 'fromCallable', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '04bc6ab9aaa9fe2d814f778f8ca17fb1' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Classes implementing Countable can be used with the + * count function. + * @link https://php.net/manual/en/class.countable.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Countable', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '61cbe504f45cfac0aa4999ec81231da0' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Count elements of an object + * @link https://php.net/manual/en/countable.count.php + * @return int The custom count as an integer. + *

+ *

+ * The return value is cast to an integer. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Countable', + 'functionName' => 'count', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '3e4c01423e8c8c3b611227fcfbc328f9' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Weak references allow the programmer to retain a reference to an + * object which does not prevent the object from being destroyed. + * They are useful for implementing cache like structures. + * @link https://www.php.net/manual/en/class.weakreference.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'WeakReference', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '4485b9ae31f3980ef14ceac410c997f9' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * This method exists only to disallow instantiation of the WeakReference + * class. Weak references are to be instantiated with the factory method + * WeakReference::create(). + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'WeakReference', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'd3e7aaff9383793f71cad314b9dc97c0' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Create a new weak reference. + * @link https://www.php.net/manual/en/weakreference.create.php + * @param object $referent The object to be weakly referenced. + * @return WeakReference the freshly instantiated object. + * @since 7.4 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'WeakReference', + 'functionName' => 'create', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'b2c0c51a22ac57f69ee3e4803c4cd71b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets a weakly referenced object. If the object has already been + * destroyed, NULL is returned. + * @link https://www.php.net/manual/en/weakreference.get.php + * @return object|null + * @since 7.4 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'WeakReference', + 'functionName' => 'get', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '0551bef56a783cc6726874e7023c6710' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Weak maps allow creating a map from objects to arbitrary values + * (similar to SplObjectStorage) without preventing the objects that are used + * as keys from being garbage collected. If an object key is garbage collected, + * it will simply be removed from the map. + * + * @since 8.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'WeakMap', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '53acb5aab8cb21f1a22e77c572195589' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns {@see true} if the value for the object is contained in + * the {@see WeakMap} and {@see false} instead. + * + * @param object $object Any object + * @return bool + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'WeakMap', + 'functionName' => 'offsetExists', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '87e698405e87fb470bea4eef8b006e6e' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns the existsing value by an object. + * + * @param object $object Any object + * @return mixed Value associated with the key object + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'WeakMap', + 'functionName' => 'offsetGet', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'acb173cdab2220621792b25daa234abb' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Sets a new value for an object. + * + * @param object $object Any object + * @param mixed $value Any value + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'WeakMap', + 'functionName' => 'offsetSet', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '3d99fe6cd6223f02dc73207d7622478c' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Force removes an object value from the {@see WeakMap} instance. + * + * @param object $object Any object + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'WeakMap', + 'functionName' => 'offsetUnset', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'b8784eaf2949294f3c29f53c191ea186' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns an iterator in the "[object => mixed]" format. + * + * @return Traversable + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'WeakMap', + 'functionName' => 'getIterator', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'a661c0c77f7a6e42bab1e26f6f4ea97d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns the number of items in the {@see WeakMap} instance. + * + * @return int + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'WeakMap', + 'functionName' => 'count', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'cc120d1a6c33bccabdeae787150d6cb5' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Stringable interface marks classes as available for serialization + * in a string. + * + * @since 8.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Stringable', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'c76205da0f812022d665bd6d929e2f68' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Magic method {@see https://www.php.net/manual/en/language.oop5.magic.php} + * called during serialization to string. + * + * @return string Returns string representation of the object that + * implements this interface (and/or "__toString" magic method). + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Stringable', + 'functionName' => '__toString', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'd12151b9f0929bd11d252546928aa3a8' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @since 8.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Attribute', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e9865bcb85f455bc659795f9738168b6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Marks that attribute declaration is allowed only in classes. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Attribute', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'f80f43b40e3112925e3abdeb1abb8c22' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Marks that attribute declaration is allowed only in functions. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Attribute', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '801d84b3861239167f896b11461a0dbf' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Marks that attribute declaration is allowed only in class methods. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Attribute', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '6e7ec30eaac6913e0f3c643d0c8e5a98' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Marks that attribute declaration is allowed only in class properties. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Attribute', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '4e1888aabe28435ac4dc09525f842358' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Marks that attribute declaration is allowed only in class constants. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Attribute', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '58b61ce0901d11173449437a50e9a527' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Marks that attribute declaration is allowed only in function or method parameters. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Attribute', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '803f4816e07ef62beddd21a73ef80b5e' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Marks that attribute declaration is allowed anywhere. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Attribute', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '7f48c6a47beb2a48781d59ad2ae99514' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Notes that an attribute declaration in the same place is + * allowed multiple times. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Attribute', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '521dc45a6fbca7df3f33a54091e1fe0a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param int $flags A value in the form of a bitmask indicating the places + * where attributes can be defined. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Attribute', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '66b58a2a44f9fd5939626f783754b7b9' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * A class for working with PHP tokens, which is an alternative to + * the {@see token_get_all()} function. + * + * @since 8.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'PhpToken', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '4f15a88ef522a356bbbff6393090cc9f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * One of the T_* constants, or an integer < 256 representing a + * single-char token. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'PhpToken', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'f124fe0161540c90e5fc2d69a16bd3b9' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * The textual content of the token. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'PhpToken', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'fbce283111889c7eb92370086919b59b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * The starting line number (1-based) of the token. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'PhpToken', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '4f331654fa7b6b59583bf7625d76fdd3' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * The starting position (0-based) in the tokenized string. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'PhpToken', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'a201e8796ae1e3a508059e9a104cfd48' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Same as {@see token_get_all()}, but returning array of {@see PhpToken} + * or an instance of a child class. + * + * @param string $code An a PHP source code + * @param int $flags + * @return static[] + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'PhpToken', + 'functionName' => 'getAll', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '068c6b47b3bbc0ed2ab5e0efdb6d4dcb' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param int $id An integer identifier + * @param string $text Textual content + * @param int $line Strating line + * @param int $pos Straring position (line offset) + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'PhpToken', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '3299bd81ac32ddb144a409329bda52c5' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Get the name of the token. + * + * @return string|null + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'PhpToken', + 'functionName' => 'getTokenName', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'd004b3eb0e3bfd792ff0d046063125c8' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Whether the token has the given ID, the given text, or has an ID/text + * part of the given array. + * + * @param int|string|array $kind + * @return bool + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'PhpToken', + 'functionName' => 'is', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '92f974b8ac0515ff55204f6013559b34' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Whether this token would be ignored by the PHP parser. + * + * @return bool + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'PhpToken', + 'functionName' => 'isIgnorable', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '7cc1088ebfa12c15bb947d6ac08d01c1' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * {@inheritDoc} + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'PhpToken', + 'functionName' => '__toString', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '02156a886a811b73f40df779e5f52d2b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @since 8.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'InternalIterator', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/53/a5/53a55303eb4383b4972327850baa0ef95f5535d1.php b/data/cache/PHPStan/53/a5/53a55303eb4383b4972327850baa0ef95f5535d1.php new file mode 100644 index 0000000..e5c72f8 --- /dev/null +++ b/data/cache/PHPStan/53/a5/53a55303eb4383b4972327850baa0ef95f5535d1.php @@ -0,0 +1,6 @@ + '1603537726-v2', + 'data' => false, +)); \ No newline at end of file diff --git a/data/cache/PHPStan/54/88/5488ee9cc55e2b648aaa0e960674f308ff739021.php b/data/cache/PHPStan/54/88/5488ee9cc55e2b648aaa0e960674f308ff739021.php new file mode 100644 index 0000000..888ab76 --- /dev/null +++ b/data/cache/PHPStan/54/88/5488ee9cc55e2b648aaa0e960674f308ff739021.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/54/8a/548ac8f366324dd4516472648d0feeac252da359.php b/data/cache/PHPStan/54/8a/548ac8f366324dd4516472648d0feeac252da359.php new file mode 100644 index 0000000..ed5739e --- /dev/null +++ b/data/cache/PHPStan/54/8a/548ac8f366324dd4516472648d0feeac252da359.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$element";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/55/42/5542470e033ff705c8b1d4aa8421fb95aa11b941.php b/data/cache/PHPStan/55/42/5542470e033ff705c8b1d4aa8421fb95aa11b941.php new file mode 100644 index 0000000..64a8ae2 --- /dev/null +++ b/data/cache/PHPStan/55/42/5542470e033ff705c8b1d4aa8421fb95aa11b941.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\NullableTypeNode":1:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/56/bd/56bd91565acae82ef9da478282d206afaecfc78e.php b/data/cache/PHPStan/56/bd/56bd91565acae82ef9da478282d206afaecfc78e.php new file mode 100644 index 0000000..c7567e7 --- /dev/null +++ b/data/cache/PHPStan/56/bd/56bd91565acae82ef9da478282d206afaecfc78e.php @@ -0,0 +1,13 @@ + '1603543737', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php', + 'modifiedTime' => 1603543737, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/57/63/57636871a21ea8552b7fc5a2b6dfb83c01abd4ee.php b/data/cache/PHPStan/57/63/57636871a21ea8552b7fc5a2b6dfb83c01abd4ee.php new file mode 100644 index 0000000..2f2daf3 --- /dev/null +++ b/data/cache/PHPStan/57/63/57636871a21ea8552b7fc5a2b6dfb83c01abd4ee.php @@ -0,0 +1,13 @@ + '1603535699', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/TypeInterface.php', + 'modifiedTime' => 1603535699, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/57/d5/57d5b6375d303cbbee2191f82481a5024c35e8c1.php b/data/cache/PHPStan/57/d5/57d5b6375d303cbbee2191f82481a5024c35e8c1.php new file mode 100644 index 0000000..acfd8e2 --- /dev/null +++ b/data/cache/PHPStan/57/d5/57d5b6375d303cbbee2191f82481a5024c35e8c1.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}s:10:"isVariadic";b:1;s:13:"parameterName";s:5:"$args";s:11:"description";s:0:"";}}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/58/50/58504eb552d53690174ac1c244e70def1c4a519c.php b/data/cache/PHPStan/58/50/58504eb552d53690174ac1c244e70def1c4a519c.php new file mode 100644 index 0000000..af50fe7 --- /dev/null +++ b/data/cache/PHPStan/58/50/58504eb552d53690174ac1c244e70def1c4a519c.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$key";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/59/d0/59d08327722c115693abc214b37f6c297bc06973.php b/data/cache/PHPStan/59/d0/59d08327722c115693abc214b37f6c297bc06973.php new file mode 100644 index 0000000..2f57efd --- /dev/null +++ b/data/cache/PHPStan/59/d0/59d08327722c115693abc214b37f6c297bc06973.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:16:"SeekableIterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"ArrayAccess";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/5a/7f/5a7fe2c394249eac081113239bda2b234b4933d5.php b/data/cache/PHPStan/5a/7f/5a7fe2c394249eac081113239bda2b234b4933d5.php new file mode 100644 index 0000000..21c9ad3 --- /dev/null +++ b/data/cache/PHPStan/5a/7f/5a7fe2c394249eac081113239bda2b234b4933d5.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:5:"$name";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"DOMNodeList";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"DOMElement";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/5a/9f/5a9fbd95fa73e1dad9d302fd2a99bb498a848813.php b/data/cache/PHPStan/5a/9f/5a9fbd95fa73e1dad9d302fd2a99bb498a848813.php new file mode 100644 index 0000000..2bf650f --- /dev/null +++ b/data/cache/PHPStan/5a/9f/5a9fbd95fa73e1dad9d302fd2a99bb498a848813.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$index";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TNode";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/5b/cd/5bcd11cdaf0d586304d4fb9408b6c852a7774323.php b/data/cache/PHPStan/5b/cd/5bcd11cdaf0d586304d4fb9408b6c852a7774323.php new file mode 100644 index 0000000..9623551 --- /dev/null +++ b/data/cache/PHPStan/5b/cd/5bcd11cdaf0d586304d4fb9408b6c852a7774323.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"DOMDocument";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/5c/9a/5c9a35bd18677c1cd33d0775b986386e0a71a485.php b/data/cache/PHPStan/5c/9a/5c9a35bd18677c1cd33d0775b986386e0a71a485.php new file mode 100644 index 0000000..961e639 --- /dev/null +++ b/data/cache/PHPStan/5c/9a/5c9a35bd18677c1cd33d0775b986386e0a71a485.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"Pair";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:18:"UnderflowException";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/5d/4d/5d4db524da18419d33dda566d697c95eb69cd5f4.php b/data/cache/PHPStan/5d/4d/5d4db524da18419d33dda566d697c95eb69cd5f4.php new file mode 100644 index 0000000..13e7b85 --- /dev/null +++ b/data/cache/PHPStan/5d/4d/5d4db524da18419d33dda566d697c95eb69cd5f4.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$argument";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/5e/2b/5e2bba4a3aac760f30e94bb9266bacd81731ad38.php b/data/cache/PHPStan/5e/2b/5e2bba4a3aac760f30e94bb9266bacd81731ad38.php new file mode 100644 index 0000000..e057804 --- /dev/null +++ b/data/cache/PHPStan/5e/2b/5e2bba4a3aac760f30e94bb9266bacd81731ad38.php @@ -0,0 +1,6 @@ + '1603538914-v2', + 'data' => false, +)); \ No newline at end of file diff --git a/data/cache/PHPStan/5f/00/5f0010dbdc436ad8538cc17b11abfc09c73d8527.php b/data/cache/PHPStan/5f/00/5f0010dbdc436ad8538cc17b11abfc09c73d8527.php new file mode 100644 index 0000000..bb4af9e --- /dev/null +++ b/data/cache/PHPStan/5f/00/5f0010dbdc436ad8538cc17b11abfc09c73d8527.php @@ -0,0 +1,30 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub-1596634130', + 'data' => + array ( + '26f3494a674313b7e9cea7a6fefab84f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TMockedClass + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'PHPUnit\\Framework\\MockObject\\Builder', + 'uses' => + array ( + 'stub' => 'PHPUnit\\Framework\\MockObject\\Stub', + ), + 'className' => 'PHPUnit\\Framework\\MockObject\\Builder\\InvocationMocker', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/60/15/601537931e86fa1e2ea57ede55e2c46bc5904a68.php b/data/cache/PHPStan/60/15/601537931e86fa1e2ea57ede55e2c46bc5904a68.php new file mode 100644 index 0000000..6ad1230 --- /dev/null +++ b/data/cache/PHPStan/60/15/601537931e86fa1e2ea57ede55e2c46bc5904a68.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/60/f8/60f89acb3595aded60526f7c1f6e46ec6b0cbea1.php b/data/cache/PHPStan/60/f8/60f89acb3595aded60526f7c1f6e46ec6b0cbea1.php new file mode 100644 index 0000000..e057804 --- /dev/null +++ b/data/cache/PHPStan/60/f8/60f89acb3595aded60526f7c1f6e46ec6b0cbea1.php @@ -0,0 +1,6 @@ + '1603538914-v2', + 'data' => false, +)); \ No newline at end of file diff --git a/data/cache/PHPStan/61/4f/614f0b76ae82233de7d2cb609788ad8dfddbd785.php b/data/cache/PHPStan/61/4f/614f0b76ae82233de7d2cb609788ad8dfddbd785.php new file mode 100644 index 0000000..e5b0e61 --- /dev/null +++ b/data/cache/PHPStan/61/4f/614f0b76ae82233de7d2cb609788ad8dfddbd785.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/61/8c/618cfc246e0d2c772fc507c7b1d7207008e09aac.php b/data/cache/PHPStan/61/8c/618cfc246e0d2c772fc507c7b1d7207008e09aac.php new file mode 100644 index 0000000..f006657 --- /dev/null +++ b/data/cache/PHPStan/61/8c/618cfc246e0d2c772fc507c7b1d7207008e09aac.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:13:"$cmp_function";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/61/bf/61bfccb2ac6c5e9a63fa5dc89d03813a7f231d0a.php b/data/cache/PHPStan/61/bf/61bfccb2ac6c5e9a63fa5dc89d03813a7f231d0a.php new file mode 100644 index 0000000..72750a3 --- /dev/null +++ b/data/cache/PHPStan/61/bf/61bfccb2ac6c5e9a63fa5dc89d03813a7f231d0a.php @@ -0,0 +1,13 @@ + '1603543737', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php', + 'modifiedTime' => 1603543737, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/61/ce/61ce88e1823b7729279fd11260e89552c1d1631a.php b/data/cache/PHPStan/61/ce/61ce88e1823b7729279fd11260e89552c1d1631a.php new file mode 100644 index 0000000..a025ab4 --- /dev/null +++ b/data/cache/PHPStan/61/ce/61ce88e1823b7729279fd11260e89552c1d1631a.php @@ -0,0 +1,108 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php-1603543737', + 'data' => + array ( + 'b4f862cb5714f46401dad2d8a63aef7f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @var string + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Check', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Check\\NumericRangeCheck', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '933f12aaed67918d13bc43cfa4b4f494' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @var TypeInterface + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Check', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Check\\NumericRangeCheck', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '52e7ada6e8b3d11cd05168f82c172439' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @var int + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Check', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Check\\NumericRangeCheck', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '31340bb32256be2671670aff3ed382c9' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Check', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Check\\NumericRangeCheck', + 'functionName' => 'check', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/61/ea/61ea51c88531a34a34dd40c07f58616739e61e93.php b/data/cache/PHPStan/61/ea/61ea51c88531a34a34dd40c07f58616739e61e93.php new file mode 100644 index 0000000..9d90a8a --- /dev/null +++ b/data/cache/PHPStan/61/ea/61ea51c88531a34a34dd40c07f58616739e61e93.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:5:"$glue";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/63/c1/63c1fd09925ae5da108652ffc9b2571cbefa3b7f.php b/data/cache/PHPStan/63/c1/63c1fd09925ae5da108652ffc9b2571cbefa3b7f.php new file mode 100644 index 0000000..1ed9a64 --- /dev/null +++ b/data/cache/PHPStan/63/c1/63c1fd09925ae5da108652ffc9b2571cbefa3b7f.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/63/e3/63e38b95d4f4c96348ba5469e1d1f16f2d322105.php b/data/cache/PHPStan/63/e3/63e38b95d4f4c96348ba5469e1d1f16f2d322105.php new file mode 100644 index 0000000..d6416fe --- /dev/null +++ b/data/cache/PHPStan/63/e3/63e38b95d4f4c96348ba5469e1d1f16f2d322105.php @@ -0,0 +1,6 @@ + '1603535699-v2', + 'data' => false, +)); \ No newline at end of file diff --git a/data/cache/PHPStan/65/21/652185cb8f6995eca3329243ec3074789d6d781f.php b/data/cache/PHPStan/65/21/652185cb8f6995eca3329243ec3074789d6d781f.php new file mode 100644 index 0000000..6b5976c --- /dev/null +++ b/data/cache/PHPStan/65/21/652185cb8f6995eca3329243ec3074789d6d781f.php @@ -0,0 +1,30 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Checker.php-1603543737', + 'data' => + array ( + '5b3d5883bba5c78407b3384ca6d6b504' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $element + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck', + 'uses' => + array ( + 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Checker', + 'functionName' => 'fulfills', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/65/36/6536b34313b827e4328c7c69a9c6bd4b47550424.php b/data/cache/PHPStan/65/36/6536b34313b827e4328c7c69a9c6bd4b47550424.php new file mode 100644 index 0000000..c35a895 --- /dev/null +++ b/data/cache/PHPStan/65/36/6536b34313b827e4328c7c69a9c6bd4b47550424.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Sequence";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/65/3c/653ca551e84c3340002433aaa719246256f977ee.php b/data/cache/PHPStan/65/3c/653ca551e84c3340002433aaa719246256f977ee.php new file mode 100644 index 0000000..0a2a490 --- /dev/null +++ b/data/cache/PHPStan/65/3c/653ca551e84c3340002433aaa719246256f977ee.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/65/3f/653f161ef2cff05433fe0fa66434804729cbee5e.php b/data/cache/PHPStan/65/3f/653f161ef2cff05433fe0fa66434804729cbee5e.php new file mode 100644 index 0000000..bb98ad1 --- /dev/null +++ b/data/cache/PHPStan/65/3f/653f161ef2cff05433fe0fa66434804729cbee5e.php @@ -0,0 +1,32 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php-1603543737', + 'data' => + array ( + 'c373e03e3c9b6e1bbf5fc38d18b5d06d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\BoolType', + 'functionName' => 'check', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/66/3d/663d3a5f39b3b808eb21f3ce746a28d3c747b349.php b/data/cache/PHPStan/66/3d/663d3a5f39b3b808eb21f3ce746a28d3c747b349.php new file mode 100644 index 0000000..bb2d3d1 --- /dev/null +++ b/data/cache/PHPStan/66/3d/663d3a5f39b3b808eb21f3ce746a28d3c747b349.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:11:"$comparator";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/67/29/672972b24f56972fa36c68437f8d3d171bf0e46a.php b/data/cache/PHPStan/67/29/672972b24f56972fa36c68437f8d3d171bf0e46a.php new file mode 100644 index 0000000..30373ee --- /dev/null +++ b/data/cache/PHPStan/67/29/672972b24f56972fa36c68437f8d3d171bf0e46a.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/68/33/68333087a45d8a173b7f49b089294acef0dfc197.php b/data/cache/PHPStan/68/33/68333087a45d8a173b7f49b089294acef0dfc197.php new file mode 100644 index 0000000..7a501b8 --- /dev/null +++ b/data/cache/PHPStan/68/33/68333087a45d8a173b7f49b089294acef0dfc197.php @@ -0,0 +1,32 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php-1603543737', + 'data' => + array ( + '7cb5051b9a1700a8f3c94e5b5869bb7b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\NumericType', + 'functionName' => 'check', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/68/d4/68d43aad9174c1cdff50ac48d1bd2de591de1f9d.php b/data/cache/PHPStan/68/d4/68d43aad9174c1cdff50ac48d1bd2de591de1f9d.php new file mode 100644 index 0000000..584faa1 --- /dev/null +++ b/data/cache/PHPStan/68/d4/68d43aad9174c1cdff50ac48d1bd2de591de1f9d.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:32:"Representation of date and time.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:44:"https://php.net/manual/en/class.datetime.php";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/69/15/6915fba9194d37a1a8345ca001cdb6b28bb6f731.php b/data/cache/PHPStan/69/15/6915fba9194d37a1a8345ca001cdb6b28bb6f731.php new file mode 100644 index 0000000..9a9893f --- /dev/null +++ b/data/cache/PHPStan/69/15/6915fba9194d37a1a8345ca001cdb6b28bb6f731.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:11:"$comparator";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Sequence";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/6b/42/6b42542855a281cdf1f25377c004a3890283b341.php b/data/cache/PHPStan/6b/42/6b42542855a281cdf1f25377c004a3890283b341.php new file mode 100644 index 0000000..f8623b4 --- /dev/null +++ b/data/cache/PHPStan/6b/42/6b42542855a281cdf1f25377c004a3890283b341.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/6b/79/6b79ffe2d2f3ecb120cd95b4e6a001ff49a9b8a9.php b/data/cache/PHPStan/6b/79/6b79ffe2d2f3ecb120cd95b4e6a001ff49a9b8a9.php new file mode 100644 index 0000000..c28768b --- /dev/null +++ b/data/cache/PHPStan/6b/79/6b79ffe2d2f3ecb120cd95b4e6a001ff49a9b8a9.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:1:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"Vector";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/6b/8b/6b8b3cb8c0068a29931b3c822341635d890e6bf6.php b/data/cache/PHPStan/6b/8b/6b8b3cb8c0068a29931b3c822341635d890e6bf6.php new file mode 100644 index 0000000..a3e6f1d --- /dev/null +++ b/data/cache/PHPStan/6b/8b/6b8b3cb8c0068a29931b3c822341635d890e6bf6.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:8:"@extends";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ExtendsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:20:"\\SplDoublyLinkedList";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/6d/c0/6dc03826a59b48f92204bbd8eecfed6a12c5e000.php b/data/cache/PHPStan/6d/c0/6dc03826a59b48f92204bbd8eecfed6a12c5e000.php new file mode 100644 index 0000000..1191fb8 --- /dev/null +++ b/data/cache/PHPStan/6d/c0/6dc03826a59b48f92204bbd8eecfed6a12c5e000.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"iterable";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Sequence";}s:12:"genericTypes";a:1:{i:0;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/71/52/715230f08d0b56c8dc7b5013fd99bc6803157557.php b/data/cache/PHPStan/71/52/715230f08d0b56c8dc7b5013fd99bc6803157557.php new file mode 100644 index 0000000..72291a4 --- /dev/null +++ b/data/cache/PHPStan/71/52/715230f08d0b56c8dc7b5013fd99bc6803157557.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TCarry";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TCarry";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TCarry";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TCarry";}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$initial";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TCarry";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/72/a1/72a1277046ed068f2da8cc94a7e2dec91b057084.php b/data/cache/PHPStan/72/a1/72a1277046ed068f2da8cc94a7e2dec91b057084.php new file mode 100644 index 0000000..1cf9d59 --- /dev/null +++ b/data/cache/PHPStan/72/a1/72a1277046ed068f2da8cc94a7e2dec91b057084.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/73/20/7320ecbd4ec9fde96a2c2e25b28ed6ec4d0f15bd.php b/data/cache/PHPStan/73/20/7320ecbd4ec9fde96a2c2e25b28ed6ec4d0f15bd.php new file mode 100644 index 0000000..c51ca90 --- /dev/null +++ b/data/cache/PHPStan/73/20/7320ecbd4ec9fde96a2c2e25b28ed6ec4d0f15bd.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:13:"$namespaceURI";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:10:"$localName";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"DOMNodeList";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"DOMElement";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/74/c4/74c4755066ea86cd86d7faa0ef0f0d56ae91e46b.php b/data/cache/PHPStan/74/c4/74c4755066ea86cd86d7faa0ef0f0d56ae91e46b.php new file mode 100644 index 0000000..5d3997f --- /dev/null +++ b/data/cache/PHPStan/74/c4/74c4755066ea86cd86d7faa0ef0f0d56ae91e46b.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"Queue";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/77/1c/771c3d4d386e56fb4486a139d3b0d66b4383f4ca.php b/data/cache/PHPStan/77/1c/771c3d4d386e56fb4486a139d3b0d66b4383f4ca.php new file mode 100644 index 0000000..5289dbc --- /dev/null +++ b/data/cache/PHPStan/77/1c/771c3d4d386e56fb4486a139d3b0d66b4383f4ca.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TReturn";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/78/3c/783cbb9b71ac0eaf58c95099dc2e81446cb31f94.php b/data/cache/PHPStan/78/3c/783cbb9b71ac0eaf58c95099dc2e81446cb31f94.php new file mode 100644 index 0000000..810c3b9 --- /dev/null +++ b/data/cache/PHPStan/78/3c/783cbb9b71ac0eaf58c95099dc2e81446cb31f94.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:19:"An Error Exception.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:50:"https://php.net/manual/en/class.errorexception.php";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/78/a5/78a5cc4d76d7d8ba8967263de2868a1728aa9ab9.php b/data/cache/PHPStan/78/a5/78a5cc4d76d7d8ba8967263de2868a1728aa9ab9.php new file mode 100644 index 0000000..2101ec1 --- /dev/null +++ b/data/cache/PHPStan/78/a5/78a5cc4d76d7d8ba8967263de2868a1728aa9ab9.php @@ -0,0 +1,8 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:199:"Representation of date interval. A date interval stores either a fixed amount of +time (in years, months, days, hours etc) or a relative time string in the format +that DateTime\'s constructor supports.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:48:"https://php.net/manual/en/class.dateinterval.php";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/78/bc/78bcb06e060c26add0ee5d64b4f63f6b33433a2a.php b/data/cache/PHPStan/78/bc/78bcb06e060c26add0ee5d64b4f63f6b33433a2a.php new file mode 100644 index 0000000..99f35c2 --- /dev/null +++ b/data/cache/PHPStan/78/bc/78bcb06e060c26add0ee5d64b4f63f6b33433a2a.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$offset";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/78/f4/78f4e82417388bd2999bc768958db49a6f516dfc.php b/data/cache/PHPStan/78/f4/78f4e82417388bd2999bc768958db49a6f516dfc.php new file mode 100644 index 0000000..6fbc6da --- /dev/null +++ b/data/cache/PHPStan/78/f4/78f4e82417388bd2999bc768958db49a6f516dfc.php @@ -0,0 +1,13 @@ + '1603543737', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php', + 'modifiedTime' => 1603543737, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/79/1d/791d42dec1afa1e492f155878b516acf6613aa2e.php b/data/cache/PHPStan/79/1d/791d42dec1afa1e492f155878b516acf6613aa2e.php new file mode 100644 index 0000000..358d83f --- /dev/null +++ b/data/cache/PHPStan/79/1d/791d42dec1afa1e492f155878b516acf6613aa2e.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$element";s:11:"description";s:34:"the element which should be tested";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/7b/46/7b467eca4e1377dc3b4d86c36144246e9cb8b4ee.php b/data/cache/PHPStan/7b/46/7b467eca4e1377dc3b4d86c36144246e9cb8b4ee.php new file mode 100644 index 0000000..45662d5 --- /dev/null +++ b/data/cache/PHPStan/7b/46/7b467eca4e1377dc3b4d86c36144246e9cb8b4ee.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"Traversable";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}}}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"ArrayAccess";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}}}s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Iterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/7c/ca/7cca279b3804f1daf686f6f76d2a25f318524bec.php b/data/cache/PHPStan/7c/ca/7cca279b3804f1daf686f6f76d2a25f318524bec.php new file mode 100644 index 0000000..91aed3b --- /dev/null +++ b/data/cache/PHPStan/7c/ca/7cca279b3804f1daf686f6f76d2a25f318524bec.php @@ -0,0 +1,13 @@ + '1603454189', + 'data' => + array ( + 0 => + array ( + 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', + 'modifiedTime' => 1603454189, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/7d/b9/7db9314965265f5a1122f840669bfbe4f815294d.php b/data/cache/PHPStan/7d/b9/7db9314965265f5a1122f840669bfbe4f815294d.php new file mode 100644 index 0000000..2a9a801 --- /dev/null +++ b/data/cache/PHPStan/7d/b9/7db9314965265f5a1122f840669bfbe4f815294d.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:3:"TIn";s:5:"bound";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"object";}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"TIn";}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$referent";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:13:"WeakReference";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"TIn";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/7e/a8/7ea8eb8185e71136ec60f992d88a19eaf0f9a089.php b/data/cache/PHPStan/7e/a8/7ea8eb8185e71136ec60f992d88a19eaf0f9a089.php new file mode 100644 index 0000000..f00089e --- /dev/null +++ b/data/cache/PHPStan/7e/a8/7ea8eb8185e71136ec60f992d88a19eaf0f9a089.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"Pair";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/7e/d1/7ed1ef5f696332f7218718288784f27e0f286ba5.php b/data/cache/PHPStan/7e/d1/7ed1ef5f696332f7218718288784f27e0f286ba5.php new file mode 100644 index 0000000..e9cb22e --- /dev/null +++ b/data/cache/PHPStan/7e/d1/7ed1ef5f696332f7218718288784f27e0f286ba5.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:8:"@extends";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ExtendsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"Traversable";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/80/0c/800c12194fed67fe6e7c6b298e0d341fa4a87e8c.php b/data/cache/PHPStan/80/0c/800c12194fed67fe6e7c6b298e0d341fa4a87e8c.php new file mode 100644 index 0000000..e567768 --- /dev/null +++ b/data/cache/PHPStan/80/0c/800c12194fed67fe6e7c6b298e0d341fa4a87e8c.php @@ -0,0 +1,13 @@ + '1603543737', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php', + 'modifiedTime' => 1603543737, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/80/84/80843a377e9989817a1bc3c8edd9a2d0d677b767.php b/data/cache/PHPStan/80/84/80843a377e9989817a1bc3c8edd9a2d0d677b767.php new file mode 100644 index 0000000..fd31741 --- /dev/null +++ b/data/cache/PHPStan/80/84/80843a377e9989817a1bc3c8edd9a2d0d677b767.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:5:"TKey2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TKey2";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$map";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:50:"PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TKey2";}}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/80/e6/80e61fa3def7b2ead509ed9d7224a95fc9207bb5.php b/data/cache/PHPStan/80/e6/80e61fa3def7b2ead509ed9d7224a95fc9207bb5.php new file mode 100644 index 0000000..b9e04a0 --- /dev/null +++ b/data/cache/PHPStan/80/e6/80e61fa3def7b2ead509ed9d7224a95fc9207bb5.php @@ -0,0 +1,32 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php-1603543737', + 'data' => + array ( + 'd0f86310b68f774d6457dce540a55116' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\RegexType', + 'functionName' => 'check', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/82/12/821215ef26faa0f89dc1c9dd3a0b11fcbf45d238.php b/data/cache/PHPStan/82/12/821215ef26faa0f89dc1c9dd3a0b11fcbf45d238.php new file mode 100644 index 0000000..3014266 --- /dev/null +++ b/data/cache/PHPStan/82/12/821215ef26faa0f89dc1c9dd3a0b11fcbf45d238.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:11:"$comparator";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/82/29/8229ee94d04173906feeb415651642b72c9b0573.php b/data/cache/PHPStan/82/29/8229ee94d04173906feeb415651642b72c9b0573.php new file mode 100644 index 0000000..603f61f --- /dev/null +++ b/data/cache/PHPStan/82/29/8229ee94d04173906feeb415651642b72c9b0573.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:12:"TMockedClass";s:5:"bound";N;s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/82/64/8264a307066f3229a11c44d841d54483d91aa0d2.php b/data/cache/PHPStan/82/64/8264a307066f3229a11c44d841d54483d91aa0d2.php new file mode 100644 index 0000000..0a0a2d2 --- /dev/null +++ b/data/cache/PHPStan/82/64/8264a307066f3229a11c44d841d54483d91aa0d2.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/83/14/83144ff1660969936adb3b5bf33e82d2c71ca780.php b/data/cache/PHPStan/83/14/83144ff1660969936adb3b5bf33e82d2c71ca780.php new file mode 100644 index 0000000..94c5300 --- /dev/null +++ b/data/cache/PHPStan/83/14/83144ff1660969936adb3b5bf33e82d2c71ca780.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$key";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/84/ea/84ea0abfef2f2455b4c149887f949677e7ac123b.php b/data/cache/PHPStan/84/ea/84ea0abfef2f2455b4c149887f949677e7ac123b.php new file mode 100644 index 0000000..e4980bd --- /dev/null +++ b/data/cache/PHPStan/84/ea/84ea0abfef2f2455b4c149887f949677e7ac123b.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"Traversable";}s:12:"genericTypes";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:2:{i:0;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}}}}}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:48:"https://php.net/manual/en/class.pdostatement.php";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/86/52/8652dfb5dbc61c7bc8fb7f9e45095f503eb949d7.php b/data/cache/PHPStan/86/52/8652dfb5dbc61c7bc8fb7f9e45095f503eb949d7.php new file mode 100644 index 0000000..80776cd --- /dev/null +++ b/data/cache/PHPStan/86/52/8652dfb5dbc61c7bc8fb7f9e45095f503eb949d7.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:11:"$comparator";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/86/af/86afd1f21dcf3d52c66aa1b3193e2b21694a3060.php b/data/cache/PHPStan/86/af/86afd1f21dcf3d52c66aa1b3193e2b21694a3060.php new file mode 100644 index 0000000..b36af23 --- /dev/null +++ b/data/cache/PHPStan/86/af/86afd1f21dcf3d52c66aa1b3193e2b21694a3060.php @@ -0,0 +1,32 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php-1603543737', + 'data' => + array ( + '654ce37e9a64307f154757983c1d483c' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\StringType', + 'functionName' => 'check', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/86/d4/86d46cd235492e48c382a2590b16fdc9d4cb4bd8.php b/data/cache/PHPStan/86/d4/86d46cd235492e48c382a2590b16fdc9d4cb4bd8.php new file mode 100644 index 0000000..059760e --- /dev/null +++ b/data/cache/PHPStan/86/d4/86d46cd235492e48c382a2590b16fdc9d4cb4bd8.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:13:"TypeInterface";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/87/5a/875a60b1571c4b7cd47aed2781241a0af9767e40.php b/data/cache/PHPStan/87/5a/875a60b1571c4b7cd47aed2781241a0af9767e40.php new file mode 100644 index 0000000..51757b0 --- /dev/null +++ b/data/cache/PHPStan/87/5a/875a60b1571c4b7cd47aed2781241a0af9767e40.php @@ -0,0 +1,8 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:183:"Weak references allow the programmer to retain a reference to an +object which does not prevent the object from being destroyed. +They are useful for implementing cache like structures.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:53:"https://www.php.net/manual/en/class.weakreference.php";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/89/18/8918d8a850184a6941a77f4b453f4cc70b5aca45.php b/data/cache/PHPStan/89/18/8918d8a850184a6941a77f4b453f4cc70b5aca45.php new file mode 100644 index 0000000..b3163ce --- /dev/null +++ b/data/cache/PHPStan/89/18/8918d8a850184a6941a77f4b453f4cc70b5aca45.php @@ -0,0 +1,13 @@ + '1603543737', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Checker.php', + 'modifiedTime' => 1603543737, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/89/45/894509e411ee391fc6a619f7699250a9570d1ad6.php b/data/cache/PHPStan/89/45/894509e411ee391fc6a619f7699250a9570d1ad6.php new file mode 100644 index 0000000..5a08455 --- /dev/null +++ b/data/cache/PHPStan/89/45/894509e411ee391fc6a619f7699250a9570d1ad6.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:13:"$cmp_function";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/89/66/8966fb7f2622fb9235757ea1c3d8407fba7cc931.php b/data/cache/PHPStan/89/66/8966fb7f2622fb9235757ea1c3d8407fba7cc931.php new file mode 100644 index 0000000..b8feea1 --- /dev/null +++ b/data/cache/PHPStan/89/66/8966fb7f2622fb9235757ea1c3d8407fba7cc931.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Sequence";}s:12:"genericTypes";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"Pair";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/89/a4/89a4e330c772b11033ff19857bd1f7f22e3836bc.php b/data/cache/PHPStan/89/a4/89a4e330c772b11033ff19857bd1f7f22e3836bc.php new file mode 100644 index 0000000..2b127cf --- /dev/null +++ b/data/cache/PHPStan/89/a4/89a4e330c772b11033ff19857bd1f7f22e3836bc.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:18:"$originalClassName";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:15:"@phpstan-return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:50:"PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"MockObject";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/8a/c5/8ac58cab748b7bb3c1fa6545ab85504dae8f4c17.php b/data/cache/PHPStan/8a/c5/8ac58cab748b7bb3c1fa6545ab85504dae8f4c17.php new file mode 100644 index 0000000..59da4c7 --- /dev/null +++ b/data/cache/PHPStan/8a/c5/8ac58cab748b7bb3c1fa6545ab85504dae8f4c17.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"list";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/8d/94/8d941c3dd1b837f591b2876a7290633465904ee8.php b/data/cache/PHPStan/8d/94/8d941c3dd1b837f591b2876a7290633465904ee8.php new file mode 100644 index 0000000..c88beef --- /dev/null +++ b/data/cache/PHPStan/8d/94/8d941c3dd1b837f591b2876a7290633465904ee8.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:8:"@extends";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ExtendsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"Collection";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/8e/f0/8ef043fdc5174b4062aae4753981223dcdd3b52e.php b/data/cache/PHPStan/8e/f0/8ef043fdc5174b4062aae4753981223dcdd3b52e.php new file mode 100644 index 0000000..40a6818 --- /dev/null +++ b/data/cache/PHPStan/8e/f0/8ef043fdc5174b4062aae4753981223dcdd3b52e.php @@ -0,0 +1,154 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub-1596634130', + 'data' => + array ( + 'db6e674a5d7e29a3b74a0aa7cdf2214a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TMockedClass + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'PHPUnit\\Framework\\MockObject', + 'uses' => + array ( + 'testcase' => 'PHPUnit\\Framework\\TestCase', + ), + 'className' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '72bf206a1c8823e04e5f25f77ec2a167' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @phpstan-param TestCase $testCase + * @phpstan-param class-string $type + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'PHPUnit\\Framework\\MockObject', + 'uses' => + array ( + 'testcase' => 'PHPUnit\\Framework\\TestCase', + ), + 'className' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TMockedClass' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', + 'functionName' => NULL, + )), + 'name' => 'TMockedClass', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'e09c5f4980b9699b608403612f5d5edc' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @phpstan-return MockObject&TMockedClass + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'PHPUnit\\Framework\\MockObject', + 'uses' => + array ( + 'testcase' => 'PHPUnit\\Framework\\TestCase', + ), + 'className' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', + 'functionName' => 'getMock', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TMockedClass' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', + 'functionName' => NULL, + )), + 'name' => 'TMockedClass', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'dd7a30499feb6f5883ad2d4885abcfa8' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @phpstan-return MockObject&TMockedClass + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'PHPUnit\\Framework\\MockObject', + 'uses' => + array ( + 'testcase' => 'PHPUnit\\Framework\\TestCase', + ), + 'className' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', + 'functionName' => 'getMockForAbstractClass', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TMockedClass' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', + 'functionName' => NULL, + )), + 'name' => 'TMockedClass', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/8f/9d/8f9d5209e697ad147161ee1e6e73939bf497560c.php b/data/cache/PHPStan/8f/9d/8f9d5209e697ad147161ee1e6e73939bf497560c.php new file mode 100644 index 0000000..060b2b7 --- /dev/null +++ b/data/cache/PHPStan/8f/9d/8f9d5209e697ad147161ee1e6e73939bf497560c.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:11:"$comparator";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"Vector";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/91/97/9197685b4780c978746ad728f350d52e9efcb736.php b/data/cache/PHPStan/91/97/9197685b4780c978746ad728f350d52e9efcb736.php new file mode 100644 index 0000000..da28425 --- /dev/null +++ b/data/cache/PHPStan/91/97/9197685b4780c978746ad728f350d52e9efcb736.php @@ -0,0 +1,13 @@ + '1603543737', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php', + 'modifiedTime' => 1603543737, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/91/f4/91f4cc125f6cb838326d89caa338a257f98583e8.php b/data/cache/PHPStan/91/f4/91f4cc125f6cb838326d89caa338a257f98583e8.php new file mode 100644 index 0000000..f086bb2 --- /dev/null +++ b/data/cache/PHPStan/91/f4/91f4cc125f6cb838326d89caa338a257f98583e8.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:1:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"Deque";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/92/2c/922c99e7244200793d5e8ea15abf2faf88c1bf6b.php b/data/cache/PHPStan/92/2c/922c99e7244200793d5e8ea15abf2faf88c1bf6b.php new file mode 100644 index 0000000..f2ce428 --- /dev/null +++ b/data/cache/PHPStan/92/2c/922c99e7244200793d5e8ea15abf2faf88c1bf6b.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@since";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:3:"5.5";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/92/79/9279a7d328929717a9165ade49d56af51d46abd5.php b/data/cache/PHPStan/92/79/9279a7d328929717a9165ade49d56af51d46abd5.php new file mode 100644 index 0000000..6378a5e --- /dev/null +++ b/data/cache/PHPStan/92/79/9279a7d328929717a9165ade49d56af51d46abd5.php @@ -0,0 +1,107 @@ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub-1603454189', + 'data' => + array ( + '4fc6b465a8606e891b21e0f8d2d3a8b8' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template-covariant T as object + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'WeakReference', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '8d830997935b9be607c4266fbf71b985' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TIn as object + * @param TIn $referent + * @return WeakReference + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'WeakReference', + 'functionName' => 'create', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'T' => + PHPStan\Type\Generic\TemplateObjectWithoutClassType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'WeakReference', + 'functionName' => NULL, + )), + 'name' => 'T', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '74f01060595d9944a7eba55f415ff087' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** @return ?T */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'WeakReference', + 'functionName' => 'get', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'T' => + PHPStan\Type\Generic\TemplateObjectWithoutClassType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'WeakReference', + 'functionName' => NULL, + )), + 'name' => 'T', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/95/93/959319bbf3575c6854b555884b624532b1992891.php b/data/cache/PHPStan/95/93/959319bbf3575c6854b555884b624532b1992891.php new file mode 100644 index 0000000..1e559b1 --- /dev/null +++ b/data/cache/PHPStan/95/93/959319bbf3575c6854b555884b624532b1992891.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:37:"Interface for customized serializing.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:48:"https://php.net/manual/en/class.serializable.php";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/96/86/9686829e0bde3898d90d45a214065ce6dd6d02ad.php b/data/cache/PHPStan/96/86/9686829e0bde3898d90d45a214065ce6dd6d02ad.php new file mode 100644 index 0000000..bc34a4b --- /dev/null +++ b/data/cache/PHPStan/96/86/9686829e0bde3898d90d45a214065ce6dd6d02ad.php @@ -0,0 +1,426 @@ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub-1603454189', + 'data' => + array ( + 'a7a094aa6ecdc2b6d85542ab565c5dc4' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** @var DOMDocumentType|null */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMDocument', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '1f85fee5c4595548db45b74f1b25098b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** @var DOMElement|null */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMDocument', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '6a07aa6b18e9f0220ba9c7fc05afdb9c' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** @var null */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMDocument', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'eaa114ef38bc1376b75db1348af11863' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param string $name + * @return DOMNodeList + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMDocument', + 'functionName' => 'getElementsByTagName', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'c121bf786e68612e12b753f8c2eb56c9' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param string $namespaceURI + * @param string $localName + * @return DOMNodeList + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMDocument', + 'functionName' => 'getElementsByTagNameNS', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '6a0b3e8d776625f1a4b6f49cd8d4eef8' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** @var DOMDocument */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMElement', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '53f5dac47807d9e7ebfd83e701a264cc' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param string $name + * @return DOMNodeList + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMElement', + 'functionName' => 'getElementsByTagName', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '7a8b7dda22de6b209b7a62aa2398545f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param string $namespaceURI + * @param string $localName + * @return DOMNodeList + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMElement', + 'functionName' => 'getElementsByTagNameNS', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'a2409a6741d52cb7908e8ac6830be634' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template-covariant TNode as DOMNode + * @implements Traversable + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMNodeList', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'caa1b746d37e237321d64c2e0dda5c5b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param int $index + * @return TNode|null + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMNodeList', + 'functionName' => 'item', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TNode' => + PHPStan\Type\Generic\TemplateObjectType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'DOMNodeList', + 'functionName' => NULL, + )), + 'name' => 'TNode', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'bound' => + PHPStan\Type\ObjectType::__set_state(array( + 'className' => 'DOMNode', + 'subtractedType' => NULL, + 'classReflection' => NULL, + 'genericObjectType' => NULL, + 'superTypes' => + array ( + ), + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'className' => 'DOMNode', + 'subtractedType' => NULL, + 'classReflection' => NULL, + 'genericObjectType' => NULL, + 'superTypes' => + array ( + ), + )), + ), + )), + )), + )), + '04178e8de0c85ed1bc6bfcbf7741a224' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** @var DOMDocument */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMAttr', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '2ff2612f8d10915e253a6b0e25f2dd25' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** @var DOMDocument */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMCharacterData', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'cdd854d580f3ba334e58a821b5344a94' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** @var DOMDocument */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMDocumentType', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '0a8e1b4bd5b876a692ee55d0978b64ad' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** @var DOMDocument */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMEntity', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '0866f967503ac4ddad294d6426914b81' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** @var DOMDocument */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMNotation', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '7a6265b999974d60cc8ec368817b0e3c' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** @var DOMDocument */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMProcessingInstruction', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '9e2d114d0512d3c29f08f8fde5ff8636' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @var string + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMProcessingInstruction', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'fa179137e6f693b3748b81cc58704868' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @property-read int $length + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMNamedNodeMap', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'd28e6f168bc5f2290f17444d36c8ba45' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** @var string */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DOMText', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/98/bd/98bde3d050ad46a4e4d4623912a61a7e3b994d4a.php b/data/cache/PHPStan/98/bd/98bde3d050ad46a4e4d4623912a61a7e3b994d4a.php new file mode 100644 index 0000000..edfcaa6 --- /dev/null +++ b/data/cache/PHPStan/98/bd/98bde3d050ad46a4e4d4623912a61a7e3b994d4a.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$index";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$newval";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/98/c1/98c186280446546a92fbcaccb9ca2da9a22da57b.php b/data/cache/PHPStan/98/c1/98c186280446546a92fbcaccb9ca2da9a22da57b.php new file mode 100644 index 0000000..37b2618 --- /dev/null +++ b/data/cache/PHPStan/98/c1/98c186280446546a92fbcaccb9ca2da9a22da57b.php @@ -0,0 +1,71 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Result.php-1603538914', + 'data' => + array ( + '9776cb297ae6435751e12556b8d53511' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @var array + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck', + 'uses' => + array ( + ), + 'className' => 'Cubicl\\StructureCheck\\Result', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '29f6e969c38e7475165518ef939c5067' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param array $errors + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck', + 'uses' => + array ( + ), + 'className' => 'Cubicl\\StructureCheck\\Result', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '16d9422e0ebede95a127dd5f22104259' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param array $errors + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck', + 'uses' => + array ( + ), + 'className' => 'Cubicl\\StructureCheck\\Result', + 'functionName' => 'invalid', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/98/fb/98fbc138e80195b07a3a3cf33010a201b217d832.php b/data/cache/PHPStan/98/fb/98fbc138e80195b07a3a3cf33010a201b217d832.php new file mode 100644 index 0000000..f09e8f4 --- /dev/null +++ b/data/cache/PHPStan/98/fb/98fbc138e80195b07a3a3cf33010a201b217d832.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:18:"UnderflowException";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/9a/a3/9aa3e7a446b29da80fba3b93053440bc895f92b6.php b/data/cache/PHPStan/9a/a3/9aa3e7a446b29da80fba3b93053440bc895f92b6.php new file mode 100644 index 0000000..55472cf --- /dev/null +++ b/data/cache/PHPStan/9a/a3/9aa3e7a446b29da80fba3b93053440bc895f92b6.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:78:"Returns a list of errors. If no error occurred, it will return an empty array.";}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:14:"ErrorInterface";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/9c/4c/9c4c2cd9153df6a13c3fe1e7ad45ead2f44a25fc.php b/data/cache/PHPStan/9c/4c/9c4c2cd9153df6a13c3fe1e7ad45ead2f44a25fc.php new file mode 100644 index 0000000..17646c6 --- /dev/null +++ b/data/cache/PHPStan/9c/4c/9c4c2cd9153df6a13c3fe1e7ad45ead2f44a25fc.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/9c/e4/9ce44407120181578ba38b9dbbc1e8f346304eab.php b/data/cache/PHPStan/9c/e4/9ce44407120181578ba38b9dbbc1e8f346304eab.php new file mode 100644 index 0000000..f549870 --- /dev/null +++ b/data/cache/PHPStan/9c/e4/9ce44407120181578ba38b9dbbc1e8f346304eab.php @@ -0,0 +1,7 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:47:"Exception is the base class for +all Exceptions.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:45:"https://php.net/manual/en/class.exception.php";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/9e/2f/9e2fd8ee64c0ee935739ec05367cd4bd3f065305.php b/data/cache/PHPStan/9e/2f/9e2fd8ee64c0ee935739ec05367cd4bd3f065305.php new file mode 100644 index 0000000..18b9812 --- /dev/null +++ b/data/cache/PHPStan/9e/2f/9e2fd8ee64c0ee935739ec05367cd4bd3f065305.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"iterable";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/9e/4c/9e4c0a9cff4b7efc3f3b05beb7002974c13e9cbc.php b/data/cache/PHPStan/9e/4c/9e4c0a9cff4b7efc3f3b05beb7002974c13e9cbc.php new file mode 100644 index 0000000..3e24ee3 --- /dev/null +++ b/data/cache/PHPStan/9e/4c/9e4c0a9cff4b7efc3f3b05beb7002974c13e9cbc.php @@ -0,0 +1,6 @@ + '1603535530-v2', + 'data' => false, +)); \ No newline at end of file diff --git a/data/cache/PHPStan/9f/59/9f59d3203927f3b9004b1d1654c3d933fd8e69c6.php b/data/cache/PHPStan/9f/59/9f59d3203927f3b9004b1d1654c3d933fd8e69c6.php new file mode 100644 index 0000000..d1658d9 --- /dev/null +++ b/data/cache/PHPStan/9f/59/9f59d3203927f3b9004b1d1654c3d933fd8e69c6.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$iterator";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:10:"isVariadic";b:0;s:13:"parameterName";s:5:"$mode";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$flags";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/9f/9e/9f9e86be5a38c0eedb84122ac3c4f850402fc526.php b/data/cache/PHPStan/9f/9e/9f9e86be5a38c0eedb84122ac3c4f850402fc526.php new file mode 100644 index 0000000..17f6dec --- /dev/null +++ b/data/cache/PHPStan/9f/9e/9f9e86be5a38c0eedb84122ac3c4f850402fc526.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"Collection";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/a0/40/a040b03b682c63893633911aaf05d2b3112ab16e.php b/data/cache/PHPStan/a0/40/a040b03b682c63893633911aaf05d2b3112ab16e.php new file mode 100644 index 0000000..d8221b8 --- /dev/null +++ b/data/cache/PHPStan/a0/40/a040b03b682c63893633911aaf05d2b3112ab16e.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:13:"ArrayIterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/a1/ed/a1ed5fffcd1dbd596fbde55df8ebda81ac34e4bb.php b/data/cache/PHPStan/a1/ed/a1ed5fffcd1dbd596fbde55df8ebda81ac34e4bb.php new file mode 100644 index 0000000..c36ffa8 --- /dev/null +++ b/data/cache/PHPStan/a1/ed/a1ed5fffcd1dbd596fbde55df8ebda81ac34e4bb.php @@ -0,0 +1,13 @@ + '1603543737', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php', + 'modifiedTime' => 1603543737, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/a2/1f/a21fa0ef32151fb3cde03802a4a53759e55d87df.php b/data/cache/PHPStan/a2/1f/a21fa0ef32151fb3cde03802a4a53759e55d87df.php new file mode 100644 index 0000000..f28a70a --- /dev/null +++ b/data/cache/PHPStan/a2/1f/a21fa0ef32151fb3cde03802a4a53759e55d87df.php @@ -0,0 +1,7 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:87:"Interface for external iterators or objects that can be iterated +themselves internally.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:44:"https://php.net/manual/en/class.iterator.php";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/a2/98/a2980e646464aff1f9fe3a41ff3fc234d8829fe0.php b/data/cache/PHPStan/a2/98/a2980e646464aff1f9fe3a41ff3fc234d8829fe0.php new file mode 100644 index 0000000..0e10a01 --- /dev/null +++ b/data/cache/PHPStan/a2/98/a2980e646464aff1f9fe3a41ff3fc234d8829fe0.php @@ -0,0 +1,13 @@ + '1603538228', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php', + 'modifiedTime' => 1603538228, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/a3/2a/a32a0395c2ded4d78188609959407adb820a5d70.php b/data/cache/PHPStan/a3/2a/a32a0395c2ded4d78188609959407adb820a5d70.php new file mode 100644 index 0000000..56adbe6 --- /dev/null +++ b/data/cache/PHPStan/a3/2a/a32a0395c2ded4d78188609959407adb820a5d70.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:41:"Returns TRUE if the check was successful.";}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/a3/68/a368bd2d8dd0210910e3ae38c7be1d99ddc8c7dd.php b/data/cache/PHPStan/a3/68/a368bd2d8dd0210910e3ae38c7be1d99ddc8c7dd.php new file mode 100644 index 0000000..74aac69 --- /dev/null +++ b/data/cache/PHPStan/a3/68/a368bd2d8dd0210910e3ae38c7be1d99ddc8c7dd.php @@ -0,0 +1,268 @@ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub-1603454189', + 'data' => + array ( + '01629e9f3d0c9810f61f458b7d5efb96' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template-covariant T of object + * @property-read class-string $name + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ReflectionClass', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'd963698e66ab97d1ecf675281a5566bc' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @var class-string + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ReflectionClass', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'T' => + PHPStan\Type\Generic\TemplateObjectWithoutClassType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ReflectionClass', + 'functionName' => NULL, + )), + 'name' => 'T', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'cc3c3369421d2b0116608d2a83fe74aa' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param T|class-string $argument + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ReflectionClass', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'T' => + PHPStan\Type\Generic\TemplateObjectWithoutClassType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ReflectionClass', + 'functionName' => NULL, + )), + 'name' => 'T', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '63ab44bcf76f8bc833650eb4498365a2' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return class-string + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ReflectionClass', + 'functionName' => 'getName', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'T' => + PHPStan\Type\Generic\TemplateObjectWithoutClassType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ReflectionClass', + 'functionName' => NULL, + )), + 'name' => 'T', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'ac69e1a6b5bced897974651729abcda5' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed ...$args + * + * @return T + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ReflectionClass', + 'functionName' => 'newInstance', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'T' => + PHPStan\Type\Generic\TemplateObjectWithoutClassType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ReflectionClass', + 'functionName' => NULL, + )), + 'name' => 'T', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '454287e6f3fbf43eb741a6777070bb2f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param array $args + * + * @return T + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ReflectionClass', + 'functionName' => 'newInstanceArgs', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'T' => + PHPStan\Type\Generic\TemplateObjectWithoutClassType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ReflectionClass', + 'functionName' => NULL, + )), + 'name' => 'T', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '7b8fb222a0f53b472ca99a69b63fa03b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return T + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ReflectionClass', + 'functionName' => 'newInstanceWithoutConstructor', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'T' => + PHPStan\Type\Generic\TemplateObjectWithoutClassType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ReflectionClass', + 'functionName' => NULL, + )), + 'name' => 'T', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/a3/a8/a3a884ea935adc56433b6395233888755dc8f0ee.php b/data/cache/PHPStan/a3/a8/a3a884ea935adc56433b6395233888755dc8f0ee.php new file mode 100644 index 0000000..88d4652 --- /dev/null +++ b/data/cache/PHPStan/a3/a8/a3a884ea935adc56433b6395233888755dc8f0ee.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:15:"@phpstan-return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:50:"PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"MockObject";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"TMockedClass";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/a4/7e/a47ea4aacc94d2b76c62131e7352712ee9ec34bc.php b/data/cache/PHPStan/a4/7e/a47ea4aacc94d2b76c62131e7352712ee9ec34bc.php new file mode 100644 index 0000000..ac78c31 --- /dev/null +++ b/data/cache/PHPStan/a4/7e/a47ea4aacc94d2b76c62131e7352712ee9ec34bc.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$set";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/a7/70/a770789801c10d90a66ee33c2e8caca85cf97289.php b/data/cache/PHPStan/a7/70/a770789801c10d90a66ee33c2e8caca85cf97289.php new file mode 100644 index 0000000..72aa28a --- /dev/null +++ b/data/cache/PHPStan/a7/70/a770789801c10d90a66ee33c2e8caca85cf97289.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:1;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/a8/0c/a80c1b97f67b232db03874f0b54ed6975802a2c0.php b/data/cache/PHPStan/a8/0c/a80c1b97f67b232db03874f0b54ed6975802a2c0.php new file mode 100644 index 0000000..987cb64 --- /dev/null +++ b/data/cache/PHPStan/a8/0c/a80c1b97f67b232db03874f0b54ed6975802a2c0.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ab/1b/ab1b23c4afc47a46121bb14a990e3d2f510b4409.php b/data/cache/PHPStan/ab/1b/ab1b23c4afc47a46121bb14a990e3d2f510b4409.php new file mode 100644 index 0000000..241a780 --- /dev/null +++ b/data/cache/PHPStan/ab/1b/ab1b23c4afc47a46121bb14a990e3d2f510b4409.php @@ -0,0 +1,944 @@ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub-1603454189', + 'data' => + array ( + '7eba3caed61cab58771cf510c1371bbf' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template-covariant TKey + * @template-covariant TValue + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Traversable', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '1f781cb6a4ac42c807e77a16d39384fa' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template-covariant TKey + * @template-covariant TValue + * + * @extends Traversable + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'IteratorAggregate', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '767f6164cd12cda9e88f97cbe4f08470' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Traversable + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'IteratorAggregate', + 'functionName' => 'getIterator', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'IteratorAggregate', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'IteratorAggregate', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '7e40b44919ce96270750bd2c3f127a8a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template-covariant TKey + * @template-covariant TValue + * + * @extends Traversable + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Iterator', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e28668f085ad3c1bde30c8e46110a811' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Iterator', + 'functionName' => 'current', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Iterator', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Iterator', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '17d24c88dab835d39c2b01605d3080cf' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TKey + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Iterator', + 'functionName' => 'key', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Iterator', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Iterator', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '67af6c5e902a42dab263103ed83ae27f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @extends Iterator + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'RecursiveIterator', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '2768b731b1ed382564a2f6665a7a703e' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template-covariant TKey + * @template-covariant TValue + * @template TSend + * @template-covariant TReturn + * + * @implements Iterator + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Generator', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'd9dd64e771487c593a9c5e45aaf587a2' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TReturn + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Generator', + 'functionName' => 'getReturn', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Generator', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Generator', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TSend' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Generator', + 'functionName' => NULL, + )), + 'name' => 'TSend', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TReturn' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Generator', + 'functionName' => NULL, + )), + 'name' => 'TReturn', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'add94bbf4d896dae4f913b671f95c958' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TSend $value + * @return TValue + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'Generator', + 'functionName' => 'send', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Generator', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Generator', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TSend' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Generator', + 'functionName' => NULL, + )), + 'name' => 'TSend', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TReturn' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Generator', + 'functionName' => NULL, + )), + 'name' => 'TReturn', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'd9c92005bfaa835d662d9bb4798ab436' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @implements Traversable + * @implements ArrayAccess + * @implements Iterator + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SimpleXMLElement', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'f048e494a33a2ab2a428256d66fe8994' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template-covariant TKey + * @template-covariant TValue + * @extends Iterator + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SeekableIterator', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '3528111eff509c1243df50fdbe2b1941' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TKey + * @template TValue + * @implements SeekableIterator + * @implements ArrayAccess + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayIterator', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'af4f8ac6dc1e460aac0812521da5a107' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param array $array + * @param int $flags + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayIterator', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayIterator', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayIterator', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '68abab6f86534772ed2cb534f0ff26d1' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue $value + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayIterator', + 'functionName' => 'append', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayIterator', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayIterator', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'e8035f176e3b2e3c1879b4515e91e625' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return array + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayIterator', + 'functionName' => 'getArrayCopy', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayIterator', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayIterator', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '7e1f4c80dd3b736c2ca82d2e100e5416' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param callable(TValue, TValue): int $cmp_function + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayIterator', + 'functionName' => 'uasort', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayIterator', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayIterator', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'cd2991973c5e91b7487a960e43fc19f4' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param callable(TKey, TKey): int $cmp_function + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayIterator', + 'functionName' => 'uksort', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayIterator', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayIterator', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'b188e8f2e7a77129d5e3e0e22766b88a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template T of \\Traversable + * @mixin T + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'RecursiveIteratorIterator', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'dec4df167020a1e58af785411a515821' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param T $iterator + * @param int $mode + * @param int $flags + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'RecursiveIteratorIterator', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'T' => + PHPStan\Type\Generic\TemplateObjectType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'RecursiveIteratorIterator', + 'functionName' => NULL, + )), + 'name' => 'T', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'bound' => + PHPStan\Type\ObjectType::__set_state(array( + 'className' => 'Traversable', + 'subtractedType' => NULL, + 'classReflection' => NULL, + 'genericObjectType' => NULL, + 'superTypes' => + array ( + ), + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'className' => 'Traversable', + 'subtractedType' => NULL, + 'classReflection' => NULL, + 'genericObjectType' => NULL, + 'superTypes' => + array ( + ), + )), + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ab/47/ab47638c0f5b6604e459e8b26a76c0460fcf96c8.php b/data/cache/PHPStan/ab/47/ab47638c0f5b6604e459e8b26a76c0460fcf96c8.php new file mode 100644 index 0000000..561d1da --- /dev/null +++ b/data/cache/PHPStan/ab/47/ab47638c0f5b6604e459e8b26a76c0460fcf96c8.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"Collection";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ab/b8/abb8cdd78a2d8b6f362f19b55cbdbd58a4bffb77.php b/data/cache/PHPStan/ab/b8/abb8cdd78a2d8b6f362f19b55cbdbd58a4bffb77.php new file mode 100644 index 0000000..9b3e39f --- /dev/null +++ b/data/cache/PHPStan/ab/b8/abb8cdd78a2d8b6f362f19b55cbdbd58a4bffb77.php @@ -0,0 +1,78 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php-1603543737', + 'data' => + array ( + '8f902fe5bb65a59750794ddb6469a59e' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** @var mixed */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\ExactValueType', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'dfc7142f768b533a3b819feca967b1eb' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\ExactValueType', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'c24e467a65fd76e48128b6d652a1a38e' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\ExactValueType', + 'functionName' => 'check', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ab/db/abdbdb57ee9fe8827341192ddd0a7b84b53981bf.php b/data/cache/PHPStan/ab/db/abdbdb57ee9fe8827341192ddd0a7b84b53981bf.php new file mode 100644 index 0000000..953117d --- /dev/null +++ b/data/cache/PHPStan/ab/db/abdbdb57ee9fe8827341192ddd0a7b84b53981bf.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ad/b9/adb9fb049ce98c71152804ae143e2be343a18e4f.php b/data/cache/PHPStan/ad/b9/adb9fb049ce98c71152804ae143e2be343a18e4f.php new file mode 100644 index 0000000..a879ba9 --- /dev/null +++ b/data/cache/PHPStan/ad/b9/adb9fb049ce98c71152804ae143e2be343a18e4f.php @@ -0,0 +1,13 @@ + '1603543737', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/OptionalType.php', + 'modifiedTime' => 1603543737, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ae/37/ae373a4ac29a22dce843d2aabc091196aee2fb7c.php b/data/cache/PHPStan/ae/37/ae373a4ac29a22dce843d2aabc091196aee2fb7c.php new file mode 100644 index 0000000..d5df262 --- /dev/null +++ b/data/cache/PHPStan/ae/37/ae373a4ac29a22dce843d2aabc091196aee2fb7c.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ae/42/ae42806e3c50767db85e0e08f3fbec902e03c76a.php b/data/cache/PHPStan/ae/42/ae42806e3c50767db85e0e08f3fbec902e03c76a.php new file mode 100644 index 0000000..b33f811 --- /dev/null +++ b/data/cache/PHPStan/ae/42/ae42806e3c50767db85e0e08f3fbec902e03c76a.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:9:"TNewValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:1:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TNewValue";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Sequence";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TNewValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ae/8a/ae8ac29c1a321f3966a1c2c5b0ced21fa50f1b06.php b/data/cache/PHPStan/ae/8a/ae8ac29c1a321f3966a1c2c5b0ced21fa50f1b06.php new file mode 100644 index 0000000..d71314c --- /dev/null +++ b/data/cache/PHPStan/ae/8a/ae8ac29c1a321f3966a1c2c5b0ced21fa50f1b06.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:3:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TPriority";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:2;O:44:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayShapeNode":1:{s:5:"items";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayShapeItemNode":3:{s:7:"keyName";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"priority";}s:8:"optional";b:0;s:9:"valueType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TPriority";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayShapeItemNode":3:{s:7:"keyName";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"data";}s:8:"optional";b:0;s:9:"valueType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/b1/3b/b13b871ad7aef06514cb36eeb7971605a44e32a2.php b/data/cache/PHPStan/b1/3b/b13b871ad7aef06514cb36eeb7971605a44e32a2.php new file mode 100644 index 0000000..e18d56b --- /dev/null +++ b/data/cache/PHPStan/b1/3b/b13b871ad7aef06514cb36eeb7971605a44e32a2.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:49:"Interface to provide accessing objects as arrays.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:47:"https://php.net/manual/en/class.arrayaccess.php";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/b3/d8/b3d8069dba0a1e67e58db2439fc676faffa2bbe7.php b/data/cache/PHPStan/b3/d8/b3d8069dba0a1e67e58db2439fc676faffa2bbe7.php new file mode 100644 index 0000000..a52492a --- /dev/null +++ b/data/cache/PHPStan/b3/d8/b3d8069dba0a1e67e58db2439fc676faffa2bbe7.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"Collection";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/b4/46/b4468d537e8981d09e6e6b5e9a84f0f5267c83a6.php b/data/cache/PHPStan/b4/46/b4468d537e8981d09e6e6b5e9a84f0f5267c83a6.php new file mode 100644 index 0000000..963f5c0 --- /dev/null +++ b/data/cache/PHPStan/b4/46/b4468d537e8981d09e6e6b5e9a84f0f5267c83a6.php @@ -0,0 +1,13 @@ + '1603454189', + 'data' => + array ( + 0 => + array ( + 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/../../../../../jetbrains/phpstorm-stubs/date/date_c.stub', + 'modifiedTime' => 1603454189, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/b4/c3/b4c3c16c3efee2aa4112997b19a88162d9273fd5.php b/data/cache/PHPStan/b4/c3/b4c3c16c3efee2aa4112997b19a88162d9273fd5.php new file mode 100644 index 0000000..0656884 --- /dev/null +++ b/data/cache/PHPStan/b4/c3/b4c3c16c3efee2aa4112997b19a88162d9273fd5.php @@ -0,0 +1,13 @@ + '1603454189', + 'data' => + array ( + 0 => + array ( + 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', + 'modifiedTime' => 1603454189, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/b6/fc/b6fc8598ade47c8f9ced34f6bb705b94aae73c96.php b/data/cache/PHPStan/b6/fc/b6fc8598ade47c8f9ced34f6bb705b94aae73c96.php new file mode 100644 index 0000000..96994e6 --- /dev/null +++ b/data/cache/PHPStan/b6/fc/b6fc8598ade47c8f9ced34f6bb705b94aae73c96.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"iterable";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/b8/57/b857f151d9eee738b2a728cadd71a52d2af1a83c.php b/data/cache/PHPStan/b8/57/b857f151d9eee738b2a728cadd71a52d2af1a83c.php new file mode 100644 index 0000000..55a6130 --- /dev/null +++ b/data/cache/PHPStan/b8/57/b857f151d9eee738b2a728cadd71a52d2af1a83c.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:5:"TKey2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TKey2";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$map";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TKey2";}}}i:1;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/b8/e3/b8e3dca32ad19ac12c2fe3c286e7cfd5b97a93c3.php b/data/cache/PHPStan/b8/e3/b8e3dca32ad19ac12c2fe3c286e7cfd5b97a93c3.php new file mode 100644 index 0000000..2de38ec --- /dev/null +++ b/data/cache/PHPStan/b8/e3/b8e3dca32ad19ac12c2fe3c286e7cfd5b97a93c3.php @@ -0,0 +1,13 @@ + '1603454189', + 'data' => + array ( + 0 => + array ( + 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/../../../../../jetbrains/phpstorm-stubs/Core/Core_c.stub', + 'modifiedTime' => 1603454189, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/b9/f5/b9f51c8eaabcec054c2de5a4493332627a7e190b.php b/data/cache/PHPStan/b9/f5/b9f51c8eaabcec054c2de5a4493332627a7e190b.php new file mode 100644 index 0000000..d71d735 --- /dev/null +++ b/data/cache/PHPStan/b9/f5/b9f51c8eaabcec054c2de5a4493332627a7e190b.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:8:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$wsdlFile";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:18:"$originalClassName";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:14:"$mockClassName";s:11:"description";s:0:"";}}i:4;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode":1:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$methods";s:11:"description";s:0:"";}}i:5;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}s:10:"isVariadic";b:0;s:13:"parameterName";s:24:"$callOriginalConstructor";s:11:"description";s:0:"";}}i:6;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode":1:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$options";s:11:"description";s:0:"";}}i:7;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:15:"@phpstan-return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:50:"PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"MockObject";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ba/45/ba45dfbbf41ccac63abd7024cde9758b704ab45e.php b/data/cache/PHPStan/ba/45/ba45dfbbf41ccac63abd7024cde9758b704ab45e.php new file mode 100644 index 0000000..6f2198d --- /dev/null +++ b/data/cache/PHPStan/ba/45/ba45dfbbf41ccac63abd7024cde9758b704ab45e.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"object";}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@property-read";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PropertyTagValueNode":3:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:12:"propertyName";s:5:"$name";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ba/47/ba47a23cd182eb7bec5721914695adb03053c094.php b/data/cache/PHPStan/ba/47/ba47a23cd182eb7bec5721914695adb03053c094.php new file mode 100644 index 0000000..f95dfed --- /dev/null +++ b/data/cache/PHPStan/ba/47/ba47a23cd182eb7bec5721914695adb03053c094.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:5:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:8:"TDefault";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$key";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"TDefault";}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$default";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"TDefault";}}}s:11:"description";s:0:"";}}i:4;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:21:"\\OutOfBoundsException";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/bb/8f/bb8f5e5fb1ab91df44808ba9b1fbd3ebdf1d021c.php b/data/cache/PHPStan/bb/8f/bb8f5e5fb1ab91df44808ba9b1fbd3ebdf1d021c.php new file mode 100644 index 0000000..04cd68c --- /dev/null +++ b/data/cache/PHPStan/bb/8f/bb8f5e5fb1ab91df44808ba9b1fbd3ebdf1d021c.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:15:"DOMDocumentType";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/bc/2b/bc2b559377237532e608f642cbc72e3309f1f2fa.php b/data/cache/PHPStan/bc/2b/bc2b559377237532e608f642cbc72e3309f1f2fa.php new file mode 100644 index 0000000..39253a1 --- /dev/null +++ b/data/cache/PHPStan/bc/2b/bc2b559377237532e608f642cbc72e3309f1f2fa.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"\\Traversable";}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@mixin";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\MixinTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/bc/e8/bce81fbc582defb6dd5dbd68543058765a3dff8b.php b/data/cache/PHPStan/bc/e8/bce81fbc582defb6dd5dbd68543058765a3dff8b.php new file mode 100644 index 0000000..d61d661 --- /dev/null +++ b/data/cache/PHPStan/bc/e8/bce81fbc582defb6dd5dbd68543058765a3dff8b.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TSend";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/bd/37/bd37ea4ef287a9aa0e114b52a027b2efb5d8f3be.php b/data/cache/PHPStan/bd/37/bd37ea4ef287a9aa0e114b52a027b2efb5d8f3be.php new file mode 100644 index 0000000..13b8993 --- /dev/null +++ b/data/cache/PHPStan/bd/37/bd37ea4ef287a9aa0e114b52a027b2efb5d8f3be.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"iterable";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/bf/d2/bfd2fe383718086c7fd58237ae26b25915459537.php b/data/cache/PHPStan/bf/d2/bfd2fe383718086c7fd58237ae26b25915459537.php new file mode 100644 index 0000000..7c7b62e --- /dev/null +++ b/data/cache/PHPStan/bf/d2/bfd2fe383718086c7fd58237ae26b25915459537.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:11:"$comparator";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/c1/92/c1922562605ad2653aa5032f493c53c6c7e82ed0.php b/data/cache/PHPStan/c1/92/c1922562605ad2653aa5032f493c53c6c7e82ed0.php new file mode 100644 index 0000000..5ac12f3 --- /dev/null +++ b/data/cache/PHPStan/c1/92/c1922562605ad2653aa5032f493c53c6c7e82ed0.php @@ -0,0 +1,34 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php-1603543737', + 'data' => + array ( + '36cb919699abe2e8c2c82a4ea186cadb' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'datetime' => 'DateTime', + 'datetimezone' => 'DateTimeZone', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\DatetimeType', + 'functionName' => 'check', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/c2/e9/c2e93f6dc26fab2f24f883eed87cf283d85255c8.php b/data/cache/PHPStan/c2/e9/c2e93f6dc26fab2f24f883eed87cf283d85255c8.php new file mode 100644 index 0000000..d2d67f0 --- /dev/null +++ b/data/cache/PHPStan/c2/e9/c2e93f6dc26fab2f24f883eed87cf283d85255c8.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/c4/6b/c46b08a745e113d3444ae8a7aebcf01d43b2b54b.php b/data/cache/PHPStan/c4/6b/c46b08a745e113d3444ae8a7aebcf01d43b2b54b.php new file mode 100644 index 0000000..f1eb0d9 --- /dev/null +++ b/data/cache/PHPStan/c4/6b/c46b08a745e113d3444ae8a7aebcf01d43b2b54b.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:9:"TNewValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:1:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TNewValue";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"Vector";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TNewValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/c6/90/c690e2bebb5d378158c041037dc531dec0616f44.php b/data/cache/PHPStan/c6/90/c690e2bebb5d378158c041037dc531dec0616f44.php new file mode 100644 index 0000000..de717e9 --- /dev/null +++ b/data/cache/PHPStan/c6/90/c690e2bebb5d378158c041037dc531dec0616f44.php @@ -0,0 +1,34 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php-1603543737', + 'data' => + array ( + 'b102ef405cf77188cac37dd9675a7809' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Check', + 'uses' => + array ( + 'countable' => 'Countable', + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Check\\CountCheck', + 'functionName' => 'check', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/c6/c7/c6c7e15d15806f232958ca2745aaa89dda159192.php b/data/cache/PHPStan/c6/c7/c6c7e15d15806f232958ca2745aaa89dda159192.php new file mode 100644 index 0000000..bb5188a --- /dev/null +++ b/data/cache/PHPStan/c6/c7/c6c7e15d15806f232958ca2745aaa89dda159192.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:1:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/c7/3d/c73df6ee5044a0fb9003cad34d64f70e135e8c2a.php b/data/cache/PHPStan/c7/3d/c73df6ee5044a0fb9003cad34d64f70e135e8c2a.php new file mode 100644 index 0000000..47ae343 --- /dev/null +++ b/data/cache/PHPStan/c7/3d/c73df6ee5044a0fb9003cad34d64f70e135e8c2a.php @@ -0,0 +1,8 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ErrorInterface.php-1603535530', + 'data' => + array ( + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/c9/c2/c9c25e3685e0266e5464f4250be70d1eb1f61e02.php b/data/cache/PHPStan/c9/c2/c9c25e3685e0266e5464f4250be70d1eb1f61e02.php new file mode 100644 index 0000000..f1125f5 --- /dev/null +++ b/data/cache/PHPStan/c9/c2/c9c25e3685e0266e5464f4250be70d1eb1f61e02.php @@ -0,0 +1,30 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/CheckerInterface.php-1603535699', + 'data' => + array ( + '1621523e6b2f05faa5602d1d381618d6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $element the element which should be tested + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck', + 'uses' => + array ( + 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\CheckerInterface', + 'functionName' => 'fulfills', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ca/e9/cae98a0407200523afcfc69c3258e8f0355399a0.php b/data/cache/PHPStan/ca/e9/cae98a0407200523afcfc69c3258e8f0355399a0.php new file mode 100644 index 0000000..234164c --- /dev/null +++ b/data/cache/PHPStan/ca/e9/cae98a0407200523afcfc69c3258e8f0355399a0.php @@ -0,0 +1,7 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:78:"Stringable interface marks classes as available for serialization +in a string.";}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@since";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:3:"8.0";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/cc/7b/cc7b640f7f737016134e37c80752e603b801bc16.php b/data/cache/PHPStan/cc/7b/cc7b640f7f737016134e37c80752e603b801bc16.php new file mode 100644 index 0000000..cf78cdb --- /dev/null +++ b/data/cache/PHPStan/cc/7b/cc7b640f7f737016134e37c80752e603b801bc16.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode":1:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:13:"TypeInterface";}}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/cc/a4/cca421c1ec9795196258ff6d5a5d167ed6817f8b.php b/data/cache/PHPStan/cc/a4/cca421c1ec9795196258ff6d5a5d167ed6817f8b.php new file mode 100644 index 0000000..e057804 --- /dev/null +++ b/data/cache/PHPStan/cc/a4/cca421c1ec9795196258ff6d5a5d167ed6817f8b.php @@ -0,0 +1,6 @@ + '1603538914-v2', + 'data' => false, +)); \ No newline at end of file diff --git a/data/cache/PHPStan/cc/f3/ccf3a128dd7dc46bd6f3a7dc119f8110dd1ced7f.php b/data/cache/PHPStan/cc/f3/ccf3a128dd7dc46bd6f3a7dc119f8110dd1ced7f.php new file mode 100644 index 0000000..8114b29 --- /dev/null +++ b/data/cache/PHPStan/cc/f3/ccf3a128dd7dc46bd6f3a7dc119f8110dd1ced7f.php @@ -0,0 +1,221 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub-1596634130', + 'data' => + array ( + '1a68fb86cfbd8faa4d32f95d2ca6ec5c' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template T + * @phpstan-param class-string $originalClassName + * @phpstan-return MockObject&T + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'PHPUnit\\Framework', + 'uses' => + array ( + 'mockobject' => 'PHPUnit\\Framework\\MockObject\\MockObject', + 'mockbuilder' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', + ), + 'className' => 'PHPUnit\\Framework\\TestCase', + 'functionName' => 'createStub', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '552cc06cfba6981aba484c74857bec4a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template T + * @phpstan-param class-string $originalClassName + * @phpstan-return MockObject&T + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'PHPUnit\\Framework', + 'uses' => + array ( + 'mockobject' => 'PHPUnit\\Framework\\MockObject\\MockObject', + 'mockbuilder' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', + ), + 'className' => 'PHPUnit\\Framework\\TestCase', + 'functionName' => 'createMock', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '5f960146cdb7f8e85b903e6b1fc11d4a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template T + * @phpstan-param class-string $className + * @phpstan-return MockBuilder + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'PHPUnit\\Framework', + 'uses' => + array ( + 'mockobject' => 'PHPUnit\\Framework\\MockObject\\MockObject', + 'mockbuilder' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', + ), + 'className' => 'PHPUnit\\Framework\\TestCase', + 'functionName' => 'getMockBuilder', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '0287921d1a9578aa4a2508000ca2f2c6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template T + * @phpstan-param class-string $originalClassName + * @phpstan-return MockObject&T + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'PHPUnit\\Framework', + 'uses' => + array ( + 'mockobject' => 'PHPUnit\\Framework\\MockObject\\MockObject', + 'mockbuilder' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', + ), + 'className' => 'PHPUnit\\Framework\\TestCase', + 'functionName' => 'createConfiguredMock', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '8405416ae47345190355be0a41c4da5f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template T + * @phpstan-param class-string $originalClassName + * @phpstan-param string[] $methods + * @phpstan-return MockObject&T + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'PHPUnit\\Framework', + 'uses' => + array ( + 'mockobject' => 'PHPUnit\\Framework\\MockObject\\MockObject', + 'mockbuilder' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', + ), + 'className' => 'PHPUnit\\Framework\\TestCase', + 'functionName' => 'createPartialMock', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '4eac825f9738888d15152c7af4d58bdc' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template T + * @phpstan-param class-string $originalClassName + * @phpstan-return MockObject&T + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'PHPUnit\\Framework', + 'uses' => + array ( + 'mockobject' => 'PHPUnit\\Framework\\MockObject\\MockObject', + 'mockbuilder' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', + ), + 'className' => 'PHPUnit\\Framework\\TestCase', + 'functionName' => 'createTestProxy', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '2cf3b6db3687673267b8f71d21f24077' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template T + * @phpstan-param class-string $originalClassName + * @phpstan-param mixed[] $arguments + * @phpstan-param string $mockClassName + * @phpstan-param bool $callOriginalConstructor + * @phpstan-param bool $callOriginalClone + * @phpstan-param bool $callAutoload + * @phpstan-param string[] $mockedMethods + * @phpstan-param bool $cloneArguments + * @phpstan-return MockObject&T + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'PHPUnit\\Framework', + 'uses' => + array ( + 'mockobject' => 'PHPUnit\\Framework\\MockObject\\MockObject', + 'mockbuilder' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', + ), + 'className' => 'PHPUnit\\Framework\\TestCase', + 'functionName' => 'getMockForAbstractClass', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'efeaf3624025a63334520fc7da13fd44' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template T + * @phpstan-param string $wsdlFile + * @phpstan-param class-string $originalClassName + * @phpstan-param string $mockClassName + * @phpstan-param string[] $methods + * @phpstan-param bool $callOriginalConstructor + * @phpstan-param mixed[] $options + * @phpstan-return MockObject&T + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'PHPUnit\\Framework', + 'uses' => + array ( + 'mockobject' => 'PHPUnit\\Framework\\MockObject\\MockObject', + 'mockbuilder' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', + ), + 'className' => 'PHPUnit\\Framework\\TestCase', + 'functionName' => 'getMockFromWsdl', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/cd/81/cd8187c54df620f355446b2bc7cd3894125463d1.php b/data/cache/PHPStan/cd/81/cd8187c54df620f355446b2bc7cd3894125463d1.php new file mode 100644 index 0000000..34ee21b --- /dev/null +++ b/data/cache/PHPStan/cd/81/cd8187c54df620f355446b2bc7cd3894125463d1.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$set";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ce/4b/ce4b30a72a5e2ba85367918e894068d4d8ad93a2.php b/data/cache/PHPStan/ce/4b/ce4b30a72a5e2ba85367918e894068d4d8ad93a2.php new file mode 100644 index 0000000..f36c839 --- /dev/null +++ b/data/cache/PHPStan/ce/4b/ce4b30a72a5e2ba85367918e894068d4d8ad93a2.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:20:"\\OutOfRangeException";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ce/e4/cee4d36311afa199a7ad1330e9863dcce72bb9d5.php b/data/cache/PHPStan/ce/e4/cee4d36311afa199a7ad1330e9863dcce72bb9d5.php new file mode 100644 index 0000000..50ae6d0 --- /dev/null +++ b/data/cache/PHPStan/ce/e4/cee4d36311afa199a7ad1330e9863dcce72bb9d5.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:10:"$className";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:15:"@phpstan-return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"MockBuilder";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/cf/be/cfbe786521a231a526b45d878f07f2214b1abaf6.php b/data/cache/PHPStan/cf/be/cfbe786521a231a526b45d878f07f2214b1abaf6.php new file mode 100644 index 0000000..f528400 --- /dev/null +++ b/data/cache/PHPStan/cf/be/cfbe786521a231a526b45d878f07f2214b1abaf6.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:1:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/d0/07/d007c7695ba5eb445ea5a7dcf6d406bead213429.php b/data/cache/PHPStan/d0/07/d007c7695ba5eb445ea5a7dcf6d406bead213429.php new file mode 100644 index 0000000..4e12986 --- /dev/null +++ b/data/cache/PHPStan/d0/07/d007c7695ba5eb445ea5a7dcf6d406bead213429.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:62:"Error is the base class for all internal PHP error exceptions.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:41:"https://php.net/manual/en/class.error.php";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@since";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:3:"7.0";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/d1/71/d171381da9e1fc3dfe6271e76cfc66ce8de8d815.php b/data/cache/PHPStan/d1/71/d171381da9e1fc3dfe6271e76cfc66ce8de8d815.php new file mode 100644 index 0000000..b0e40f6 --- /dev/null +++ b/data/cache/PHPStan/d1/71/d171381da9e1fc3dfe6271e76cfc66ce8de8d815.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:8:"@extends";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ExtendsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Iterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/d2/5a/d25a12b2ff83257315e6a18922d11f8fea5fe72a.php b/data/cache/PHPStan/d2/5a/d25a12b2ff83257315e6a18922d11f8fea5fe72a.php new file mode 100644 index 0000000..c5792b7 --- /dev/null +++ b/data/cache/PHPStan/d2/5a/d25a12b2ff83257315e6a18922d11f8fea5fe72a.php @@ -0,0 +1,2127 @@ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/../../../../../jetbrains/phpstorm-stubs/date/date_c.stub-1603454189', + 'data' => + array ( + '3d2b6ab28f6e17405d84ced2a1d2a01b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @since 5.5 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeInterface', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '05d9568ffe7061a1898d7722596ea60f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Returns the difference between two DateTime objects + * @link https://secure.php.net/manual/en/datetime.diff.php + * @param DateTimeInterface $datetime2

The date to compare to.

+ * @param bool $absolute

Should the interval be forced to be positive?

+ * @return DateInterval + * The https://secure.php.net/manual/en/class.dateinterval.php DateInterval} object representing the + * difference between the two dates or FALSE on failure. + * + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeInterface', + 'functionName' => 'diff', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '45e1b866b335fceabd023697bf10e506' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Returns date formatted according to given format + * @link https://secure.php.net/manual/en/datetime.format.php + * @param string $format

+ * Format accepted by {@link https://secure.php.net/manual/en/function.date.php date()}. + *

+ * @return string + * Returns the formatted date string on success or FALSE on failure. + * + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeInterface', + 'functionName' => 'format', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'b3cf701a52c3599920acb61006ff2f5d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Returns the timezone offset + * @return int + * Returns the timezone offset in seconds from UTC on success + * or FALSE on failure. + * + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeInterface', + 'functionName' => 'getOffset', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'dfc8e0413fdc54c9e442e735df5c8bb4' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Gets the Unix timestamp + * @return int + * Returns the Unix timestamp representing the date. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeInterface', + 'functionName' => 'getTimestamp', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '35bb4db4afbb2986bd5340375b7d3c34' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Return time zone relative to given DateTime + * @link https://secure.php.net/manual/en/datetime.gettimezone.php + * @return DateTimeZone + * Returns a {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone} object on success + * or FALSE on failure. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeInterface', + 'functionName' => 'getTimezone', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'cff73f8c843748412116c5e219f481e4' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * The __wakeup handler + * @link https://secure.php.net/manual/en/datetime.wakeup.php + * @return void Initializes a DateTime object. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeInterface', + 'functionName' => '__wakeup', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e09063dfb8a0f8abb4d8d3aeb3a0b3e6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @since 5.5 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'b2388a1da3f180a476fba1a39afb0688' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * @link https://secure.php.net/manual/en/datetimeimmutable.construct.php + * @param string $time [optional] + *

A date/time string. Valid formats are explained in {@link https://secure.php.net/manual/en/datetime.formats.php Date and Time Formats}.

+ *

+ * Enter NULL here to obtain the current time when using + * the $timezone parameter. + *

+ * @param DateTimeZone $timezone [optional]

+ * A {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone} object representing the + * timezone of $time. + *

+ *

+ * If $timezone is omitted, + * the current timezone will be used. + *

+ *

Note: + *

+ * The $timezone parameter + * and the current timezone are ignored when the + *$time parameter either + * is a UNIX timestamp (e.g. @946684800) + * or specifies a timezone + * (e.g. 2010-01-28T15:00:00+02:00). + *

+ * @throws Exception Emits Exception in case of an error. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'd229b36c7d2c18350bd49e63ef0dd9a6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Adds an amount of days, months, years, hours, minutes and seconds + * @param DateInterval $interval + * @return static + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'add', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'f6eec2318dd8a2a1bb101c9574d9a3e3' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Returns new DateTimeImmutable object formatted according to the specified format + * @link https://secure.php.net/manual/en/datetimeimmutable.createfromformat.php + * @param string $format + * @param string $time + * @param DateTimeZone $timezone [optional] + * @return DateTimeImmutable|false + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'createFromFormat', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'c3c6bff5a9de0679698b2916c7704416' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.6.0)
+ * Returns new DateTimeImmutable object encapsulating the given DateTime object + * @link https://secure.php.net/manual/en/datetimeimmutable.createfrommutable.php + * @param DateTime $dateTime The mutable DateTime object that you want to convert to an immutable version. This object is not modified, but instead a new DateTimeImmutable object is created containing the same date time and timezone information. + * @return DateTimeImmutable returns a new DateTimeImmutable instance. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'createFromMutable', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '3138af5c20a7d6ca24405a6a007f05f4' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Returns the warnings and errors + * @link https://secure.php.net/manual/en/datetimeimmutable.getlasterrors.php + * @return array Returns array containing info about warnings and errors. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'getLastErrors', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '85cf171bc477f145bba53faf9c00f47a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Alters the timestamp + * @link https://secure.php.net/manual/en/datetimeimmutable.modify.php + * @param string $modify

A date/time string. Valid formats are explained in + * {@link https://secure.php.net/manual/en/datetime.formats.php Date and Time Formats}.

+ * @return static + * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'modify', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '92f0a7ab0c7b7340a3ba031fd9c2e3ee' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * The __set_state handler + * @link https://secure.php.net/manual/en/datetimeimmutable.set-state.php + * @param array $array

Initialization array.

+ * @return DateTimeImmutable + * Returns a new instance of a {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => '__set_state', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '8a7917cf6cae97d592f63f606113d725' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Sets the date + * @link https://secure.php.net/manual/en/datetimeimmutable.setdate.php + * @param int $year

Year of the date.

+ * @param int $month

Month of the date.

+ * @param int $day

Day of the date.

+ * @return static|false + * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. + * + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'setDate', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e0bd9e4ddab53e6d2b2ab335384586dd' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Sets the ISO date + * @link https://php.net/manual/en/class.datetimeimmutable.php + * @param int $year

Year of the date.

+ * @param int $week

Week of the date.

+ * @param int $day [optional]

Offset from the first day of the week.

+ * @return static|false + * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'setISODate', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'eff9e28ff976f01f59c7efa098201ad4' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Sets the time + * @link https://secure.php.net/manual/en/datetimeimmutable.settime.php + * @param int $hour

Hour of the time.

+ * @param int $minute

Minute of the time.

+ * @param int $second [optional]

Second of the time.

+ * @param int $microseconds [optional]

Microseconds of the time. Added since 7.1

+ * @return static|false + * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'setTime', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e115e2a900f5aa158716c1888f9eea2d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Sets the date and time based on an Unix timestamp + * @link https://secure.php.net/manual/en/datetimeimmutable.settimestamp.php + * @param int $unixtimestamp

Unix timestamp representing the date.

+ * @return static|false + * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'setTimestamp', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '3048aff20d3c0828963d8215676e6285' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Sets the time zone + * @link https://secure.php.net/manual/en/datetimeimmutable.settimezone.php + * @param DateTimeZone $timezone

+ * A {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone} object representing the + * desired time zone. + *

+ * @return static|false + * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'setTimezone', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e85b721f0e11b498af1d6109bb31f86f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Subtracts an amount of days, months, years, hours, minutes and seconds + * @link https://secure.php.net/manual/en/datetimeimmutable.sub.php + * @param DateInterval $interval

+ * A {@link https://secure.php.net/manual/en/class.dateinterval.php DateInterval} object + *

+ * @return static|false + * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'sub', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '02ed4bedfce1468bb8a8bfee9bb5f47b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Returns the difference between two DateTime objects + * @link https://secure.php.net/manual/en/datetime.diff.php + * @param DateTimeInterface $datetime2

The date to compare to.

+ * @param bool $absolute [optional]

Should the interval be forced to be positive?

+ * @return DateInterval + * The {@link https://secure.php.net/manual/en/class.dateinterval.php DateInterval} object representing the + * difference between the two dates or FALSE on failure. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'diff', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'f2944e2fa340b990ac26c5d9235d9835' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Returns date formatted according to given format + * @link https://secure.php.net/manual/en/datetime.format.php + * @param string $format

+ * Format accepted by {@link https://secure.php.net/manual/en/function.date.php date()}. + *

+ * @return string + * Returns the formatted date string on success or FALSE on failure. + * + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'format', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'afbc407c23232100ac62c439635fe903' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Returns the timezone offset + * @return int + * Returns the timezone offset in seconds from UTC on success + * or FALSE on failure. + * + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'getOffset', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '2f18b808d80d5de80474d55f4c5e1d6b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Gets the Unix timestamp + * @return int + * Returns the Unix timestamp representing the date. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'getTimestamp', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'd66acc4dacd80f5f00bcd849b61b9484' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * Return time zone relative to given DateTime + * @link https://secure.php.net/manual/en/datetime.gettimezone.php + * @return DateTimeZone + * Returns a {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone} object on success + * or FALSE on failure. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'getTimezone', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '901779d809c12aeb638371ff9b898518' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.5.0)
+ * The __wakeup handler + * @link https://secure.php.net/manual/en/datetime.wakeup.php + * @return void Initializes a DateTime object. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => '__wakeup', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '07962246d960845fb374ef5b5373a4d7' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return DateTimeImmutable + * @since 8.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeImmutable', + 'functionName' => 'createFromInterface', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '4d738d3613343d18ec8a34d0c2d6c9ad' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Representation of date and time. + * @link https://php.net/manual/en/class.datetime.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'a8f2098ed859674061ca7b77bb55c2ee' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * (PHP 5 >=5.2.0)
+ * @link https://php.net/manual/en/datetime.construct.php + * @param string $time [optional] + *

A date/time string. Valid formats are explained in {@link https://php.net/manual/en/datetime.formats.php Date and Time Formats}.

+ *

+ * Enter now here to obtain the current time when using + * the $timezone parameter. + *

+ * @param DateTimeZone $timezone [optional]

+ * A {@link https://php.net/manual/en/class.datetimezone.php DateTimeZone} object representing the + * timezone of $time. + *

+ *

+ * If $timezone is omitted, + * the current timezone will be used. + *

+ *

Note: + *

+ * The $timezone parameter + * and the current timezone are ignored when the + *$time parameter either + * is a UNIX timestamp (e.g. @946684800) + * or specifies a timezone + * (e.g. 2010-01-28T15:00:00+02:00). + *

+ * @throws Exception Emits Exception in case of an error. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '4b2577a6898a5bc7f5141cd26ecb65c3' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return void + * @link https://php.net/manual/en/datetime.wakeup.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => '__wakeup', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'c3b5481407104a1301a6f907f195d149' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns date formatted according to given format. + * @param string $format + * @return string + * @link https://php.net/manual/en/datetime.format.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'format', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '297189520ef78020955611f851232f7f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Alter the timestamp of a DateTime object by incrementing or decrementing + * in a format accepted by strtotime(). + * @param string $modify A date/time string. Valid formats are explained in Date and Time Formats. + * @return static|false Returns the DateTime object for method chaining or FALSE on failure. + * @link https://php.net/manual/en/datetime.modify.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'modify', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '15545988f734091bc9f93252a5cee4ff' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Adds an amount of days, months, years, hours, minutes and seconds to a DateTime object + * @param DateInterval $interval + * @return static + * @link https://php.net/manual/en/datetime.add.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'add', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'a0092a92ce5c562b52d844409366223a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @since 7.3 + * @return DateTime + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'createFromImmutable', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '3d968364f0a866fbdde395c7bc45ed4a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Subtracts an amount of days, months, years, hours, minutes and seconds from a DateTime object + * @param DateInterval $interval + * @return static + * @link https://php.net/manual/en/datetime.sub.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'sub', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '2e9d8e0cf685b07457929195d5cc57fd' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Get the TimeZone associated with the DateTime + * @return DateTimeZone + * @link https://php.net/manual/en/datetime.gettimezone.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'getTimezone', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'ac7c80d39a01fc8c1cf1d167af8d82ba' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Set the TimeZone associated with the DateTime + * @param DateTimeZone $timezone + * @return static + * @link https://php.net/manual/en/datetime.settimezone.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'setTimezone', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '082ef51a3555e08c1c1bbc77fba66a33' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns the timezone offset + * @return int + * @link https://php.net/manual/en/datetime.getoffset.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'getOffset', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '54c6bf3cf5efde62f696b3bb81131fae' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Sets the current time of the DateTime object to a different time. + * @param int $hour + * @param int $minute + * @param int $second + * @param int $microseconds Added since 7.1 + * @return static|false + * @link https://php.net/manual/en/datetime.settime.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'setTime', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '9951e88ffc0966ed3d90e17eead67331' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Sets the current date of the DateTime object to a different date. + * @param int $year + * @param int $month + * @param int $day + * @return static + * @link https://php.net/manual/en/datetime.setdate.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'setDate', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '7b586febe34684356f8751c3e221bfe8' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Set a date according to the ISO 8601 standard - using weeks and day offsets rather than specific dates. + * @param int $year + * @param int $week + * @param int $day + * @return static + * @link https://php.net/manual/en/datetime.setisodate.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'setISODate', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '206d934697d1951d145b5334065ef85f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Sets the date and time based on a Unix timestamp. + * @param int $unixtimestamp + * @return static + * @link https://php.net/manual/en/datetime.settimestamp.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'setTimestamp', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'ada43331066bc057afd8b40c3a9fd80d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the Unix timestamp. + * @return int + * @link https://php.net/manual/en/datetime.gettimestamp.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'getTimestamp', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '5f286fa2382ee7b5cb18dc82736ccb2d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns the difference between two DateTime objects represented as a DateInterval. + * @param DateTimeInterface $datetime2 The date to compare to. + * @param bool $absolute [optional] Whether to return absolute difference. + * @return DateInterval|false The DateInterval object representing the difference between the two dates or FALSE on failure. + * @link https://php.net/manual/en/datetime.diff.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'diff', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '34d849ed095d9ceb9aa1f1d12c7d36c9' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Parse a string into a new DateTime object according to the specified format + * @param string $format Format accepted by date(). + * @param string $time String representing the time. + * @param DateTimeZone $timezone A DateTimeZone object representing the desired time zone. + * @return DateTime|false + * @link https://php.net/manual/en/datetime.createfromformat.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'createFromFormat', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e4a877c79d509935adc0e4265bc07c17' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns an array of warnings and errors found while parsing a date/time string + * @return array + * @link https://php.net/manual/en/datetime.getlasterrors.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'getLastErrors', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '600d35880b0adfd617b1ee50d1b36c95' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * The __set_state handler + * @link https://php.net/manual/en/datetime.set-state.php + * @param array $array

Initialization array.

+ * @return DateTime

Returns a new instance of a DateTime object.

+ */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => '__set_state', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '50af2f67575a3af7e2b14e7b56c2c738' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return DateTime + * @since 8.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTime', + 'functionName' => 'createFromInterface', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '666c4a863be65df7d01513be68fa73b2' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Representation of time zone + * @link https://php.net/manual/en/class.datetimezone.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeZone', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e1111e1b389a23c2d258ecc0a29a0b66' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param string $timezone + * @link https://php.net/manual/en/datetimezone.construct.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeZone', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '3b4136d54023382d21d2cccb9f44e745' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns the name of the timezone + * @return string + * @link https://php.net/manual/en/datetimezone.getname.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeZone', + 'functionName' => 'getName', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '6edc178c31c28a9d3770872fbabde9a2' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns location information for a timezone + * @return array + * @link https://php.net/manual/en/datetimezone.getlocation.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeZone', + 'functionName' => 'getLocation', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'f08ff0ba5d44d48d63091cec0d9048d2' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns the timezone offset from GMT + * @param DateTimeInterface $datetime + * @return int + * @link https://php.net/manual/en/datetimezone.getoffset.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeZone', + 'functionName' => 'getOffset', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '130d33f70882c6f41f9f5d0ba6560be4' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns all transitions for the timezone + * @param int $timestamp_begin [optional] + * @param int $timestamp_end [optional] + * @return array + * @link https://php.net/manual/en/datetimezone.gettransitions.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeZone', + 'functionName' => 'getTransitions', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'ffee69a5375c2c96dfb3f0029fbb95f7' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns associative array containing dst, offset and the timezone name + * @return array + * @link https://php.net/manual/en/datetimezone.listabbreviations.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeZone', + 'functionName' => 'listAbbreviations', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '65a4d0caf504237a10883d23fb185bdd' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns a numerically indexed array with all timezone identifiers + * @param int $what + * @param string $country + * @return array + * @link https://php.net/manual/en/datetimezone.listidentifiers.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeZone', + 'functionName' => 'listIdentifiers', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'a96a3e4329bff9813944ab07bf8506e2' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @link https://php.net/manual/en/datetime.wakeup.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateTimeZone', + 'functionName' => '__wakeup', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '93fae83ab46665cffb5ac92abd17a899' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Representation of date interval. A date interval stores either a fixed amount of + * time (in years, months, days, hours etc) or a relative time string in the format + * that DateTime\'s constructor supports. + * @link https://php.net/manual/en/class.dateinterval.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateInterval', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '63c03b54f8f0270c9388f089a782a83b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Number of years + * @var int + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateInterval', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '6990065273d56e5372b2f12ba9f6e77f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Number of months + * @var int + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateInterval', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '5dcb6c6d291a21b103320041290b8aa6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Number of days + * @var int + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateInterval', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '5b6cbc367800618a7b1a9096ddfa4340' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Number of hours + * @var int + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateInterval', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '299c8129ac9365450d74ce936c6387d6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Number of minutes + * @var int + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateInterval', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '912a9967d20df047e51579d6299dc52a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Number of seconds + * @var int + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateInterval', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'd261093d5f688aa1ec29eb564269581c' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Number of microseconds + * @since 7.1.0 + * @var float + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateInterval', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'bb9419d0def14bfd68c268ee155fc2b7' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Is 1 if the interval is inverted and 0 otherwise + * @var int + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateInterval', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '0b06f02e7070cba43e9583226991e382' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Total number of days the interval spans. If this is unknown, days will be FALSE. + * @var int|false + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateInterval', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'b637b2f4790d80cee178ab676b682acf' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param string $interval_spec + * @link https://php.net/manual/en/dateinterval.construct.php + * @throws \\Exception when the interval_spec cannot be parsed as an interval. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateInterval', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '91937c12c523414faacc0e435e8cd71d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Formats the interval + * @param $format + * @return string + * @link https://php.net/manual/en/dateinterval.format.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateInterval', + 'functionName' => 'format', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '043be9eec7284bf8e9380a80104f2160' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Sets up a DateInterval from the relative parts of the string + * @param string $time + * @return DateInterval + * @link https://php.net/manual/en/dateinterval.createfromdatestring.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateInterval', + 'functionName' => 'createFromDateString', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'ae0af064cddf6f713c922e3bddcc44fb' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Representation of date period. + * @link https://php.net/manual/en/class.dateperiod.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DatePeriod', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'b95ebd38d43eef95d538c2e0d810e741' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Start date + * @var DateTimeInterface + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DatePeriod', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '18342bddda0d3e5d66e6c4df45de1b7e' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Current iterator value. + * @var DateTimeInterface|null + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DatePeriod', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '25fb06dfd7fd90587f39c6efd8941e8a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * End date. + * @var DateTimeInterface|null + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DatePeriod', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'b26e4911dd966088fa8271af709108f3' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * The interval + * @var DateInterval + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DatePeriod', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '6fed0fb3246334b29897102e61deb6fd' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Number of recurrences. + * @var int + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DatePeriod', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '73ec99f743f1e8ae9ebe0dc61c4e0df6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Start of period. + * @var bool + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DatePeriod', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '69feb3240ac3d8ce7b4588b278b88d06' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param DateTimeInterface $start + * @param DateInterval $interval + * @param DateTimeInterface $end + * @param int $options Can be set to DatePeriod::EXCLUDE_START_DATE. + * @link https://php.net/manual/en/dateperiod.construct.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DatePeriod', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'eb420301e52d5737402e6eddb499ebe0' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param DateTimeInterface $start + * @param DateInterval $interval + * @param int $recurrences Number of recurrences + * @param int $options Can be set to DatePeriod::EXCLUDE_START_DATE. + * @link https://php.net/manual/en/dateperiod.construct.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DatePeriod', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'e9b5432750ad6de41a0a3cd163f6ebba' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param string $isostr String containing the ISO interval. + * @param int $options Can be set to DatePeriod::EXCLUDE_START_DATE. + * @link https://php.net/manual/en/dateperiod.construct.php + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DatePeriod', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '44dc2a1d3fe95708642c1f1fc7321e5d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the interval + * @return DateInterval + * @link https://php.net/manual/en/dateperiod.getdateinterval.php + * @since 5.6.5 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DatePeriod', + 'functionName' => 'getDateInterval', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '583f84e603ec875632ad03e2a855617f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the end date + * @return DateTimeInterface|null + * @link https://php.net/manual/en/dateperiod.getenddate.php + * @since 5.6.5 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DatePeriod', + 'functionName' => 'getEndDate', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'ff7b572f0c55b0ce0b819752e4df55d6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Gets the start date + * @return DateTimeInterface + * @link https://php.net/manual/en/dateperiod.getstartdate.php + * @since 5.6.5 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DatePeriod', + 'functionName' => 'getStartDate', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '8d8920728aa3409f435d4a514ec99339' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Get the number of recurrences + * @return int + * @link https://php.net/manual/en/dateperiod.getrecurrences.php + * @since 7.2.17 + * @since 7.3.4 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DatePeriod', + 'functionName' => 'getRecurrences', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'cd5b3c0fe8c0d6bac93242d16b286dac' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @since 8.0 + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DatePeriod', + 'functionName' => 'getIterator', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/d2/f6/d2f6b5ac15f6fa7012b3045cb7e68b009cfef69d.php b/data/cache/PHPStan/d2/f6/d2f6b5ac15f6fa7012b3045cb7e68b009cfef69d.php new file mode 100644 index 0000000..7f8bfdd --- /dev/null +++ b/data/cache/PHPStan/d2/f6/d2f6b5ac15f6fa7012b3045cb7e68b009cfef69d.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/d4/12/d412241aafa86f3b0144cde635ff239c6fbebe89.php b/data/cache/PHPStan/d4/12/d412241aafa86f3b0144cde635ff239c6fbebe89.php new file mode 100644 index 0000000..94f6eed --- /dev/null +++ b/data/cache/PHPStan/d4/12/d412241aafa86f3b0144cde635ff239c6fbebe89.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode":1:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:13:"TypeInterface";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$children";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/d5/83/d58345230f80c9c457e5ef675579a4e8bb8f062d.php b/data/cache/PHPStan/d5/83/d58345230f80c9c457e5ef675579a4e8bb8f062d.php new file mode 100644 index 0000000..41d7f5d --- /dev/null +++ b/data/cache/PHPStan/d5/83/d58345230f80c9c457e5ef675579a4e8bb8f062d.php @@ -0,0 +1,820 @@ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub-1603454189', + 'data' => + array ( + '88cc35d2b802999bb9c5185afedeaa77' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TKey + * @template TValue + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayAccess', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '31072f3ad2c93f0875c959e167c6dcea' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TKey $offset + * @return bool + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayAccess', + 'functionName' => 'offsetExists', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayAccess', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayAccess', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '09d6824a20494a7a23a4ea15a8caab5a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TKey $offset + * @return TValue|null + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayAccess', + 'functionName' => 'offsetGet', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayAccess', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayAccess', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '675302ea577eaefd89d8285497693304' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TKey|null $offset + * @param TValue $value + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayAccess', + 'functionName' => 'offsetSet', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayAccess', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayAccess', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '00c86ace0f30e14d027e1838ce5bd5be' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TKey $offset + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayAccess', + 'functionName' => 'offsetUnset', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayAccess', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayAccess', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '97c224d8d4f1e530c33c55ae991399b9' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TKey + * @template TValue + * @implements IteratorAggregate + * @implements ArrayAccess + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayObject', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '58da7e332eb03b9b084bba04d5f7fa5a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param array|object $input + * @param int $flags + * @param class-string $iterator_class + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayObject', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayObject', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayObject', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '8e5562cdf5c23e4a848ad4ed03f30618' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue $value + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayObject', + 'functionName' => 'append', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayObject', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayObject', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'c38012599d0aa30512e6693d968d3289' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return array + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayObject', + 'functionName' => 'getArrayCopy', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayObject', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayObject', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '6e98e995863825b63b62cc6c5385f6f8' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param callable(TValue, TValue): int $cmp_function + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayObject', + 'functionName' => 'uasort', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayObject', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayObject', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '0b3502b77e1d7d7ebe38e3c9b87cf773' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param callable(TKey, TKey): int $cmp_function + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayObject', + 'functionName' => 'uksort', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayObject', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayObject', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '9c158f2fa441cd83a1a92f8907ab6752' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return ArrayIterator + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayObject', + 'functionName' => 'getIterator', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayObject', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayObject', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'c337c6078a3849cbcbc532ac1d1176cc' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param class-string $iterator_class + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ArrayObject', + 'functionName' => 'setIteratorClass', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayObject', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'ArrayObject', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '80d4794bdd41c195e890ac2eebe8392a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue + * @implements Iterator + * @implements IteratorAggregate + * @implements ArrayAccess + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplFixedArray', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'a44ecdc6fbaf7a565d743c6ddd2ee1c1' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TInput + * @param array $array + * @return SplFixedArray + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplFixedArray', + 'functionName' => 'fromArray', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplFixedArray', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'a7a8c89e5a3598835d4137c39ecd97ed' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return array + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'SplFixedArray', + 'functionName' => 'toArray', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'SplFixedArray', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/d6/c7/d6c7894d2c3f31a89cbb701649ffdb29880305c3.php b/data/cache/PHPStan/d6/c7/d6c7894d2c3f31a89cbb701649ffdb29880305c3.php new file mode 100644 index 0000000..1340299 --- /dev/null +++ b/data/cache/PHPStan/d6/c7/d6c7894d2c3f31a89cbb701649ffdb29880305c3.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"object";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$input";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$flags";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:15:"$iterator_class";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/d6/d1/d6d1cf91766bba92a19ba0f5f8ad32c56411dc23.php b/data/cache/PHPStan/d6/d1/d6d1cf91766bba92a19ba0f5f8ad32c56411dc23.php new file mode 100644 index 0000000..13357ff --- /dev/null +++ b/data/cache/PHPStan/d6/d1/d6d1cf91766bba92a19ba0f5f8ad32c56411dc23.php @@ -0,0 +1,29 @@ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub-1603454189', + 'data' => + array ( + 'fba43560cb18eb37e960d401da43931e' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @var int|false + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'DateInterval', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/d8/4f/d84f1f1b679a04eb41dfed1d9eb8bd63495a3739.php b/data/cache/PHPStan/d8/4f/d84f1f1b679a04eb41dfed1d9eb8bd63495a3739.php new file mode 100644 index 0000000..fbd8794 --- /dev/null +++ b/data/cache/PHPStan/d8/4f/d84f1f1b679a04eb41dfed1d9eb8bd63495a3739.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:15:"$iterator_class";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/d9/61/d9612a4104111b7f099f71a618f1e30a2b68fe04.php b/data/cache/PHPStan/d9/61/d9612a4104111b7f099f71a618f1e30a2b68fe04.php new file mode 100644 index 0000000..0ba97fc --- /dev/null +++ b/data/cache/PHPStan/d9/61/d9612a4104111b7f099f71a618f1e30a2b68fe04.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/d9/6e/d96e6114bae224af917ef66aa644cbd3d2ad388d.php b/data/cache/PHPStan/d9/6e/d96e6114bae224af917ef66aa644cbd3d2ad388d.php new file mode 100644 index 0000000..9423d3e --- /dev/null +++ b/data/cache/PHPStan/d9/6e/d96e6114bae224af917ef66aa644cbd3d2ad388d.php @@ -0,0 +1,13 @@ + '1603454189', + 'data' => + array ( + 0 => + array ( + 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/../../../../../jetbrains/phpstorm-stubs/json/json.stub', + 'modifiedTime' => 1603454189, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/da/0c/da0c41b7b7efaab03b8c58d20ab83fa2b47876f4.php b/data/cache/PHPStan/da/0c/da0c41b7b7efaab03b8c58d20ab83fa2b47876f4.php new file mode 100644 index 0000000..d5cf257 --- /dev/null +++ b/data/cache/PHPStan/da/0c/da0c41b7b7efaab03b8c58d20ab83fa2b47876f4.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:9:"TPriority";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"\\Iterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/da/91/da911c7c46b1b5fdf99e60f594bd1fa7b0de57f5.php b/data/cache/PHPStan/da/91/da911c7c46b1b5fdf99e60f594bd1fa7b0de57f5.php new file mode 100644 index 0000000..9f07bf7 --- /dev/null +++ b/data/cache/PHPStan/da/91/da911c7c46b1b5fdf99e60f594bd1fa7b0de57f5.php @@ -0,0 +1,13 @@ + '1603538228', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php', + 'modifiedTime' => 1603538228, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/dc/a9/dca91084a6fffc5ff8585f980e51b9c4f4af7a0b.php b/data/cache/PHPStan/dc/a9/dca91084a6fffc5ff8585f980e51b9c4f4af7a0b.php new file mode 100644 index 0000000..56ef906 --- /dev/null +++ b/data/cache/PHPStan/dc/a9/dca91084a6fffc5ff8585f980e51b9c4f4af7a0b.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"iterable";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"Vector";}s:12:"genericTypes";a:1:{i:0;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/dd/35/dd35a6f2b8b307afb80055a2e8afbfc4be43623b.php b/data/cache/PHPStan/dd/35/dd35a6f2b8b307afb80055a2e8afbfc4be43623b.php new file mode 100644 index 0000000..ee054f6 --- /dev/null +++ b/data/cache/PHPStan/dd/35/dd35a6f2b8b307afb80055a2e8afbfc4be43623b.php @@ -0,0 +1,7 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:128:"Throwable is the base interface for any object that can be thrown via a throw statement in PHP 7, +including Error and Exception.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:45:"https://php.net/manual/en/class.throwable.php";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@since";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:3:"7.0";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/dd/5b/dd5b834cc67cb680840b8984056bd3aa642557a4.php b/data/cache/PHPStan/dd/5b/dd5b834cc67cb680840b8984056bd3aa642557a4.php new file mode 100644 index 0000000..fbc3a89 --- /dev/null +++ b/data/cache/PHPStan/dd/5b/dd5b834cc67cb680840b8984056bd3aa642557a4.php @@ -0,0 +1,13 @@ + '1603537726', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ResultInterface.php', + 'modifiedTime' => 1603537726, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/dd/ad/ddad4a9d3067ff46a5f269031f7ab097a5d8d512.php b/data/cache/PHPStan/dd/ad/ddad4a9d3067ff46a5f269031f7ab097a5d8d512.php new file mode 100644 index 0000000..d87f119 --- /dev/null +++ b/data/cache/PHPStan/dd/ad/ddad4a9d3067ff46a5f269031f7ab097a5d8d512.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:6:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:5:"TSend";s:5:"bound";N;s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TReturn";s:5:"bound";N;s:11:"description";s:0:"";}}i:4;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:5;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Iterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/dd/d1/ddd19efd73efd622a0e33a448ab1edf31f57217d.php b/data/cache/PHPStan/dd/d1/ddd19efd73efd622a0e33a448ab1edf31f57217d.php new file mode 100644 index 0000000..8218254 --- /dev/null +++ b/data/cache/PHPStan/dd/d1/ddd19efd73efd622a0e33a448ab1edf31f57217d.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:1:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Sequence";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/de/c1/dec120293f83544841608b0b8244f1b466274780.php b/data/cache/PHPStan/de/c1/dec120293f83544841608b0b8244f1b466274780.php new file mode 100644 index 0000000..57ea307 --- /dev/null +++ b/data/cache/PHPStan/de/c1/dec120293f83544841608b0b8244f1b466274780.php @@ -0,0 +1,54 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php-1603538228', + 'data' => + array ( + 'c04db3151052046973b8338f9dd88c23' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** @var TypeInterface[] */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\ObjectType', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '8c0b7e6f73dddc44936f16388f39e1b2' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TypeInterface[] $children + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\ObjectType', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/de/e4/dee4b9bf1b90f7e353e74a4a2acb6d708b044aad.php b/data/cache/PHPStan/de/e4/dee4b9bf1b90f7e353e74a4a2acb6d708b044aad.php new file mode 100644 index 0000000..c461b81 --- /dev/null +++ b/data/cache/PHPStan/de/e4/dee4b9bf1b90f7e353e74a4a2acb6d708b044aad.php @@ -0,0 +1,73 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ResultInterface.php-1603537726', + 'data' => + array ( + 'b514ca500553c5240e70880ee520ee81' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @package Cubicl\\StructureCheck + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck', + 'uses' => + array ( + ), + 'className' => 'Cubicl\\StructureCheck\\ResultInterface', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '75b17834e7a5262ef5949e08b1f3245c' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns TRUE if the check was successful. + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck', + 'uses' => + array ( + ), + 'className' => 'Cubicl\\StructureCheck\\ResultInterface', + 'functionName' => 'isValid', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'cedf84becf40cc103bb2f7673da028ba' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * Returns a list of errors. If no error occurred, it will return an empty array. + * + * @return array + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck', + 'uses' => + array ( + ), + 'className' => 'Cubicl\\StructureCheck\\ResultInterface', + 'functionName' => 'getErrors', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/df/ff/dfffda35031533d5f3c3def47b1112fc85c90940.php b/data/cache/PHPStan/df/ff/dfffda35031533d5f3c3def47b1112fc85c90940.php new file mode 100644 index 0000000..53f2d6b --- /dev/null +++ b/data/cache/PHPStan/df/ff/dfffda35031533d5f3c3def47b1112fc85c90940.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@since";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:3:"8.0";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/e0/2a/e02afeaabe77653c97a35c740be56b13386484dd.php b/data/cache/PHPStan/e0/2a/e02afeaabe77653c97a35c740be56b13386484dd.php new file mode 100644 index 0000000..1594ac6 --- /dev/null +++ b/data/cache/PHPStan/e0/2a/e02afeaabe77653c97a35c740be56b13386484dd.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TCarry";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:3:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TCarry";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:2;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TCarry";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TCarry";}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$initial";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TCarry";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/e0/c3/e0c3951210468e1993eb63cab47a7b5b90900c58.php b/data/cache/PHPStan/e0/c3/e0c3951210468e1993eb63cab47a7b5b90900c58.php new file mode 100644 index 0000000..1c76984 --- /dev/null +++ b/data/cache/PHPStan/e0/c3/e0c3951210468e1993eb63cab47a7b5b90900c58.php @@ -0,0 +1,6 @@ + '1603535529-v2', + 'data' => false, +)); \ No newline at end of file diff --git a/data/cache/PHPStan/e1/41/e141554384b393b6d9000a46e3db1e4a5ec223ec.php b/data/cache/PHPStan/e1/41/e141554384b393b6d9000a46e3db1e4a5ec223ec.php new file mode 100644 index 0000000..e5c72f8 --- /dev/null +++ b/data/cache/PHPStan/e1/41/e141554384b393b6d9000a46e3db1e4a5ec223ec.php @@ -0,0 +1,6 @@ + '1603537726-v2', + 'data' => false, +)); \ No newline at end of file diff --git a/data/cache/PHPStan/e1/a7/e1a726c9b10a25c77ef8e287e3c5d2a17c2afc3e.php b/data/cache/PHPStan/e1/a7/e1a726c9b10a25c77ef8e287e3c5d2a17c2afc3e.php new file mode 100644 index 0000000..a786f7b --- /dev/null +++ b/data/cache/PHPStan/e1/a7/e1a726c9b10a25c77ef8e287e3c5d2a17c2afc3e.php @@ -0,0 +1,6086 @@ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub-1603454189', + 'data' => + array ( + '63aec1a7334bb9a64eccf57609d6ddc4' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template-covariant TKey + * @template-covariant TValue + * @extends Traversable + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Collection', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '5df3002e0bda93e8ba98725609e0f9e5' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Collection + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Collection', + 'functionName' => 'copy', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Collection', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Collection', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '119c02b887d196688b2da107d967f7e3' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return array + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Collection', + 'functionName' => 'toArray', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Collection', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Collection', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'dffb645183e1e3136cd7c233fc58d97b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue + * @implements Sequence + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Deque', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '40b60a5c5c7d54f1d6ccc7b46b157aa6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param iterable $values + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Deque', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Deque', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '8cff6d82cc7fe37ffbb23dd636301e9a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Deque + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Deque', + 'functionName' => 'copy', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Deque', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'fcae3853a7f3d8426177457dd587066f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue2 + * @param iterable $values + * @return Deque + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Deque', + 'functionName' => 'merge', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Deque', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '84a8343aea8232497d3dd8ed4953ab0b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param (callable(TValue): bool)|null $callback + * @return Deque + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Deque', + 'functionName' => 'filter', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Deque', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'ebf90a73e9cb3202b61e7756357205f8' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TNewValue + * @param callable(TValue): TNewValue $callback + * @return Deque + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Deque', + 'functionName' => 'map', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Deque', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'a7253a24decb2e6dd35f49d2645530d1' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Deque + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Deque', + 'functionName' => 'reversed', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Deque', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '94874d13799d0902422b92474193e43c' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Deque + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Deque', + 'functionName' => 'slice', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Deque', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '2944cff2651b589334ccc38f32fb6c92' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TKey + * @template TValue + * @implements Collection + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'bd0bfdb909a3134d68c5e1f41877d667' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param iterable $values + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '1a0e812a2cabcc39ad2445c51d7bd9f6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Map + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'copy', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '72a1b29802bffcc0a521ccdd4b0725e9' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param callable(TKey, TValue): TValue $callback + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'apply', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '48ee3b5855e4a0d398c69fe20fcf6564' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Pair + * @throws UnderflowException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'first', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '38af794904cc490f9f21cbdf6e4d68f1' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Pair + * @throws UnderflowException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'last', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'eb5a447316c2d1c450bf680afc42651f' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Pair + * @throws OutOfRangeException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'skip', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'c816c2046e3210c891dff7d3bb06700e' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TKey2 + * @template TValue2 + * @param iterable $values + * @return Map + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'merge', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '89998820a0f727a6ce5adc27989f93a0' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TKey2 + * @template TValue2 + * @param Map $map + * @return Map + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'intersect', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '2ca3d52921add14eeb7d693faf46a1dd' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue2 + * @param Map $map + * @return Map + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'diff', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '62f6dbe2ca23ab5fb60124dc4fbec710' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TKey $key + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'hasKey', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'be90e32bce2a08c7798911912837e689' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'hasValue', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '9a4248d2bf812d5f42d586f65ffa170b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param (callable(TKey, TValue): bool)|null $callback + * @return Map + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'filter', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '1460e7b9153226f206b988dcbcf5b29b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TDefault + * @param TKey $key + * @param TDefault $default + * @return TValue|TDefault + * @throws OutOfBoundsException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'get', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'bf87a4d1e817f15c56b1813c73bad080' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Set + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'keys', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '5b2a7329e685f283d25c56386c25c2f0' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TNewValue + * @param callable(TKey, TValue): TNewValue $callback + * @return Map + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'map', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '5210295ba5d392a0e15b907949c93557' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Sequence> + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'pairs', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '435b5b3dfa980a5befab282e64e20fbd' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TKey $key + * @param TValue $value + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'put', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '30f19da05e9919053e2a9338625cae34' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param iterable $values + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'putAll', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '4b6040d0430ae9e80a4b1fbd27d7e206' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TCarry + * @param callable(TCarry, TKey, TValue): TCarry $callback + * @param TCarry $initial + * @return TCarry + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'reduce', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'aab3fdfa28245f6a230a7982aa785dbc' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TDefault + * @param TKey $key + * @param TDefault $default + * @return TValue|TDefault + * @throws \\OutOfBoundsException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'remove', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '0d7b68717336ef4cc573705d68a9e783' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Map + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'reversed', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '79a47d96fee57a8065667faa008e9ec2' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Map + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'slice', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'eaf1a371ef2d5f4bf2bb739ae8dd2497' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param (callable(TValue, TValue): int)|null $comparator + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'sort', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '8ed0c87b7ceab4aa1eb93c62dde2df45' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param (callable(TValue, TValue): int)|null $comparator + * @return Map + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'sorted', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'ae3bcc34bd07bf3cd9b0a647e6575242' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param (callable(TKey, TKey): int)|null $comparator + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'ksort', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'b1f2af4e0730cb1d41761917bc762b92' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param (callable(TKey, TKey): int)|null $comparator + * @return Map + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'ksorted', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'de683147ad23fbed64dc28856b92e690' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return array + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'toArray', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '65bc90784782b312077e1c5c4148aa7d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Sequence + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'values', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '3ba4fd71d4db58af957f132b6ba29b97' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TKey2 + * @template TValue2 + * @param Map $map + * @return Map + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'union', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '8b93aa61b4be161edeb1886727fcc05d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TKey2 + * @template TValue2 + * @param Map $map + * @return Map + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Map', + 'functionName' => 'xor', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Map', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'ca0571b554d7e936106b9f0bde384533' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template-covariant TKey + * @template-covariant TValue + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Pair', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'f8c23f9d4ec986a7528adedc2a530879' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @var TKey + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Pair', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Pair', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Pair', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '355bd3441e5c151f4cd35fdc5c31b8c4' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @var TValue + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Pair', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Pair', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Pair', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '25389934237fb7482c4a7dde905c70ca' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TKey $key + * @param TValue $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Pair', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Pair', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Pair', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'ed05907a6d5b2e6407b572b528f08002' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Pair + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Pair', + 'functionName' => 'copy', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TKey' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Pair', + 'functionName' => NULL, + )), + 'name' => 'TKey', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Pair', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 2, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'b3df67215f26417e1631212bba2cd07d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue + * @extends Collection + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '44abfde8617a5fb516df6373baa28af6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param callable(TValue): TValue $callback + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'apply', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '386f818067425d0b323d48a6a904709a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue ...$values + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'contains', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '320e8cc8c2acfd6ddec8acea0492406e' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param (callable(TValue): bool)|null $callback + * @return Sequence + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'filter', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'd08838d09ebc56f728a65a9d83bd8e57' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue $value + * @return int|false + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'find', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '6c0a4829915bf1f70622cf716e3df6c0' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + * @throws \\UnderflowException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'first', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '9348ce3bc9ffe0b0ea9acc8dbe57bfc7' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + * @throws \\OutOfRangeException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'get', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '81d3b71a8abb999a142dcb91ee2fc536' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue ...$values + * @throws \\OutOfRangeException + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'insert', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'bc7095c9280ea7b204f5316fff3c9150' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param string $glue + * @return string + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'join', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '87382845a1f10dc3e4bc0c19573b1a4e' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + * @throws \\UnderflowException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'last', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '9dd8c2c9827cfe72aeaa6ae916f390d5' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TNewValue + * @param callable(TValue): TNewValue $callback + * @return Sequence + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'map', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '8d2113865c84936fa2b44b94a9a0ed55' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue2 + * @param iterable $values + * @return Sequence + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'merge', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'edf96c329d6c8267fefea89a070a0420' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + * @throws \\UnderflowException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'pop', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '104f6f995312d03784a4ecfb4b074bf0' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue ...$values + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'push', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'b6f3daa0e83d0ae65057afbfae2fc770' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TCarry + * @param callable(TCarry, TValue): TCarry $callback + * @param TCarry $initial + * @return TCarry + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'reduce', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '13d1472602282436bb5fa32b9af2b17c' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + * @throws \\OutOfRangeException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'remove', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'f575f2873dad334d9ddcb95863816e10' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Sequence + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'reversed', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '2cf75a76b05a8ada1db66c51c6461bcc' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue $value + * @throws \\OutOfRangeException + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'set', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'b463f09955fc6ef277fbfd4d6f2b7a33' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + * @throws \\UnderflowException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'shift', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '7ca08a112f6e863909f7f6d98a2a5933' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Sequence + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'slice', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '7d0d55894d44f592abc92791e1fcd61e' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param (callable(TValue, TValue): int)|null $comparator + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'sort', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '79b619f72c6385b417ef391b1ed71dcd' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param (callable(TValue, TValue): int)|null $comparator + * @return Sequence + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'sorted', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '34808d2ebce4492e4ebb246adf0c7a03' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue ...$values + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Sequence', + 'functionName' => 'unshift', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Sequence', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '4e6fb3081c51eea1c436f4c21b10ba34' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue + * @implements Sequence + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Vector', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '7dfb41cb9657b06c436cd036c1f3ff15' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param iterable $values + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Vector', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Vector', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'c4c79a1bd67832040d7ac0d0667d1400' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Vector + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Vector', + 'functionName' => 'copy', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Vector', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'a5c292f328c147bea15f62ad2657bb7a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Vector + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Vector', + 'functionName' => 'reversed', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Vector', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'd5ce41b161c10737ebfa2b5ae0cedb9c' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Vector + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Vector', + 'functionName' => 'slice', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Vector', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'f16cb27280ecdcd130348fc92fcfe282' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param (callable(TValue, TValue): int)|null $comparator + * @return Vector + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Vector', + 'functionName' => 'sorted', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Vector', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '6ce8160b6e8036aedcc99a652f901426' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param (callable(TValue): bool)|null $callback + * @return Vector + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Vector', + 'functionName' => 'filter', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Vector', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '468a6f2ef17d7111b7848b23d0fa2f59' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TNewValue + * @param callable(TValue): TNewValue $callback + * @return Vector + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Vector', + 'functionName' => 'map', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Vector', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '469542c6d2e7eebe3d3dd1fc20cea701' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue2 + * @param iterable $values + * @return Vector + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Vector', + 'functionName' => 'merge', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Vector', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'ea5454164f5f1606e9ee088e9b3f1237' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue + * @implements Collection + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + 'a01aac9fb6046729b47f1e391df9156b' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param iterable $values + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'b988129e93abbcab89c776a865ad4043' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue ...$values + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'add', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'c2db7fc2f7bade7d40025dfe284b32ea' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue ...$values + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'contains', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'b8964e93730ba24a2fe2d15ed9b5d124' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Set + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'copy', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '6d94a9b0667cced4c7af5c5511ae00b9' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue2 + * @param Set $set + * @return Set + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'diff', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '59aeb33bf545cc3c3c482a7e802e1bc8' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param (callable(TValue): bool)|null $callback + * @return Set + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'filter', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '1f115819ee07c9d51cd275fcdb398fe2' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + * @throws \\UnderflowException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'first', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '545ca6d94f10f47c1cdbd60dc12b98c2' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + * @throws \\OutOfRangeException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'get', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '650ea90951e0c55dcf2866a421cc48bb' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue2 + * @param Set $set + * @return Set + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'intersect', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'b3a7a9cc5ec2b88308b732cead99a9c2' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + * @throws \\UnderflowException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'last', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '15e8b68e4d5e3f0697351f02b25d03de' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue2 + * @param iterable $values + * @return Set + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'merge', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '65981a8657b4087471545c5abca5e7d2' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue ...$values + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'remove', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '63e1be2cff05a99bc384213b66436579' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Set + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'reversed', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'e3157e4a9272cb677a38932fed618ab6' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Set + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'slice', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '9406d35e9082172a2c163f7e41c099df' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param (callable(TValue, TValue): int)|null $comparator + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'sort', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '610f6713d86b3afce8baade21eba6623' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param (callable(TValue, TValue): int)|null $comparator + * @return Set + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'sorted', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'b4ffcfb1f377f4f2dedefb8da5ddba95' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return list + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'toArray', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '016c99f0fe454c2bffd89f9126ad8175' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue2 + * @param Set $set + * @return Set + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'union', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '57d5b7ba2330209aeb60e4a512e9ba96' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue2 + * @param Set $set + * @return Set + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Set', + 'functionName' => 'xor', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Set', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'db5eab0992505e98da914674e9d18497' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue + * @implements Collection + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Stack', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '77b38aab4767661ac1784937fff7faf2' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param iterable $values + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Stack', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Stack', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '30f13c6b923b5f5df931e4fd34925755' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Stack + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Stack', + 'functionName' => 'copy', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Stack', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'f1e67d9b1897d7229a8248aecdc424dd' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + * @throws UnderflowException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Stack', + 'functionName' => 'peek', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Stack', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '9ddf80ec493918d0051a7954abfde098' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + * @throws UnderflowException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Stack', + 'functionName' => 'pop', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Stack', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '7fcb35adb06811ed379f2cbeea34f1b8' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue ...$values + * @return void + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Stack', + 'functionName' => 'push', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Stack', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'a76d41320342da02315c6c2113b8abb7' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return list + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Stack', + 'functionName' => 'toArray', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Stack', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '330f184bd3fcf8c2b99c54987dc2aca5' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue + * @implements Collection + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Queue', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '5668d9e01f7bf1ae6d854480938b5671' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param iterable $values + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Queue', + 'functionName' => '__construct', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Queue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '7d1d6fead0c9d2ec1ba6138672f65c9a' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return Queue + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Queue', + 'functionName' => 'copy', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Queue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '6f77b617c7be2755ba40cffb4ab26038' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + * @throws UnderflowException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Queue', + 'functionName' => 'peek', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Queue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '6203f6bdf51479fa5e91643cf8fbea64' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + * @throws UnderflowException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Queue', + 'functionName' => 'pop', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Queue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'cf7659ac1350bf170d08e15beca91c52' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue ...$values + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Queue', + 'functionName' => 'push', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Queue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'a51b1f3cbc67b7654e2e6327de7f623c' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return list + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\Queue', + 'functionName' => 'toArray', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\Queue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '2e69c5d4e901f576ca84d0587d01d9cf' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @template TValue + * @implements Collection + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\PriorityQueue', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '51df22a8c674c94eb73070262b384aaf' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return PriorityQueue + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\PriorityQueue', + 'functionName' => 'copy', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\PriorityQueue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '861cca8512769c30f4a792596a6b9603' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + * @throws UnderflowException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\PriorityQueue', + 'functionName' => 'peek', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\PriorityQueue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '6b1820494f0adcfb4c88283f89f6ca3d' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return TValue + * @throws UnderflowException + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\PriorityQueue', + 'functionName' => 'pop', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\PriorityQueue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + '00645d16c1e9d8ca1ba9c310f231e121' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param TValue $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\PriorityQueue', + 'functionName' => 'push', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\PriorityQueue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + 'bb15d694bf29f4dd507dc63cd7fbdccf' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @return list + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Ds', + 'uses' => + array ( + 'countable' => 'Countable', + 'jsonserializable' => 'JsonSerializable', + 'outofboundsexception' => 'OutOfBoundsException', + 'outofrangeexception' => 'OutOfRangeException', + 'traversable' => 'Traversable', + 'underflowexception' => 'UnderflowException', + ), + 'className' => 'Ds\\PriorityQueue', + 'functionName' => 'toArray', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + 'TValue' => + PHPStan\Type\Generic\TemplateMixedType::__set_state(array( + 'scope' => + PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( + 'className' => 'Ds\\PriorityQueue', + 'functionName' => NULL, + )), + 'name' => 'TValue', + 'strategy' => + PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( + )), + 'variance' => + PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( + 'value' => 1, + )), + 'bound' => NULL, + 'isExplicitMixed' => true, + 'subtractedType' => NULL, + )), + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/e1/d4/e1d40f514e065d528e58310fc766719b31dda359.php b/data/cache/PHPStan/e1/d4/e1d40f514e065d528e58310fc766719b31dda359.php new file mode 100644 index 0000000..2e4c906 --- /dev/null +++ b/data/cache/PHPStan/e1/d4/e1d40f514e065d528e58310fc766719b31dda359.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:11:"$comparator";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/e3/c5/e3c553486b2485d247bd6bd0e3914b90c67a93e4.php b/data/cache/PHPStan/e3/c5/e3c553486b2485d247bd6bd0e3914b90c67a93e4.php new file mode 100644 index 0000000..f295999 --- /dev/null +++ b/data/cache/PHPStan/e3/c5/e3c553486b2485d247bd6bd0e3914b90c67a93e4.php @@ -0,0 +1,50 @@ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub-1603454189', + 'data' => + array ( + 'be63467f0d55417c8ba64c6ff6954787' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @var int + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ZipArchive', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + '712389540044693fe774904cdb8473d8' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @var string + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => NULL, + 'uses' => + array ( + ), + 'className' => 'ZipArchive', + 'functionName' => NULL, + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/e3/d6/e3d64048576d3b4dd3c8a3c5bceb77330a26176f.php b/data/cache/PHPStan/e3/d6/e3d64048576d3b4dd3c8a3c5bceb77330a26176f.php new file mode 100644 index 0000000..8436ad1 --- /dev/null +++ b/data/cache/PHPStan/e3/d6/e3d64048576d3b4dd3c8a3c5bceb77330a26176f.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TPriority";}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$priority";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"true";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/e5/c1/e5c1632e349e087ae5a7c757d76a9ae1fb7c6acd.php b/data/cache/PHPStan/e5/c1/e5c1632e349e087ae5a7c757d76a9ae1fb7c6acd.php new file mode 100644 index 0000000..bd1271c --- /dev/null +++ b/data/cache/PHPStan/e5/c1/e5c1632e349e087ae5a7c757d76a9ae1fb7c6acd.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"false";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/e5/c3/e5c3f42e60230db73c41ff5c2adf5539f3fa2f55.php b/data/cache/PHPStan/e5/c3/e5c3f42e60230db73c41ff5c2adf5539f3fa2f55.php new file mode 100644 index 0000000..3e6dbe5 --- /dev/null +++ b/data/cache/PHPStan/e5/c3/e5c3f42e60230db73c41ff5c2adf5539f3fa2f55.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"Deque";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/e7/8a/e78a9585a205dbbed43edcc6315dc48aad0b624f.php b/data/cache/PHPStan/e7/8a/e78a9585a205dbbed43edcc6315dc48aad0b624f.php new file mode 100644 index 0000000..82d7633 --- /dev/null +++ b/data/cache/PHPStan/e7/8a/e78a9585a205dbbed43edcc6315dc48aad0b624f.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Sequence";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/e7/a2/e7a26daa24ce442984a6a8ba6ba0030afa924c8b.php b/data/cache/PHPStan/e7/a2/e7a26daa24ce442984a6a8ba6ba0030afa924c8b.php new file mode 100644 index 0000000..d6416fe --- /dev/null +++ b/data/cache/PHPStan/e7/a2/e7a26daa24ce442984a6a8ba6ba0030afa924c8b.php @@ -0,0 +1,6 @@ + '1603535699-v2', + 'data' => false, +)); \ No newline at end of file diff --git a/data/cache/PHPStan/e8/32/e83247bd7b1c1562ffe438dfe5907427243da65b.php b/data/cache/PHPStan/e8/32/e83247bd7b1c1562ffe438dfe5907427243da65b.php new file mode 100644 index 0000000..3b7e588 --- /dev/null +++ b/data/cache/PHPStan/e8/32/e83247bd7b1c1562ffe438dfe5907427243da65b.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:10:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:18:"$originalClassName";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode":1:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:10:"$arguments";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:14:"$mockClassName";s:11:"description";s:0:"";}}i:4;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}s:10:"isVariadic";b:0;s:13:"parameterName";s:24:"$callOriginalConstructor";s:11:"description";s:0:"";}}i:5;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}s:10:"isVariadic";b:0;s:13:"parameterName";s:18:"$callOriginalClone";s:11:"description";s:0:"";}}i:6;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}s:10:"isVariadic";b:0;s:13:"parameterName";s:13:"$callAutoload";s:11:"description";s:0:"";}}i:7;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode":1:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:14:"$mockedMethods";s:11:"description";s:0:"";}}i:8;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}s:10:"isVariadic";b:0;s:13:"parameterName";s:15:"$cloneArguments";s:11:"description";s:0:"";}}i:9;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:15:"@phpstan-return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:50:"PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"MockObject";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/e9/4e/e94ebb3b47f34e8ed39a6e2a65014583500d1d16.php b/data/cache/PHPStan/e9/4e/e94ebb3b47f34e8ed39a6e2a65014583500d1d16.php new file mode 100644 index 0000000..87b633b --- /dev/null +++ b/data/cache/PHPStan/e9/4e/e94ebb3b47f34e8ed39a6e2a65014583500d1d16.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/e9/ce/e9ceb39be3c5da139b626441971fd2099dcf1f6c.php b/data/cache/PHPStan/e9/ce/e9ceb39be3c5da139b626441971fd2099dcf1f6c.php new file mode 100644 index 0000000..5515d8d --- /dev/null +++ b/data/cache/PHPStan/e9/ce/e9ceb39be3c5da139b626441971fd2099dcf1f6c.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:9:"TNewValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:1:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TNewValue";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"Deque";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TNewValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/e9/fa/e9faed4e6fa23e59e4de957eaae032848e795a97.php b/data/cache/PHPStan/e9/fa/e9faed4e6fa23e59e4de957eaae032848e795a97.php new file mode 100644 index 0000000..d24b5d3 --- /dev/null +++ b/data/cache/PHPStan/e9/fa/e9faed4e6fa23e59e4de957eaae032848e795a97.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"iterable";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ea/e5/eae5d6db7da71566297d73f5a1df212309c98e5c.php b/data/cache/PHPStan/ea/e5/eae5d6db7da71566297d73f5a1df212309c98e5c.php new file mode 100644 index 0000000..7b5aa6b --- /dev/null +++ b/data/cache/PHPStan/ea/e5/eae5d6db7da71566297d73f5a1df212309c98e5c.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:14:"ErrorInterface";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$errors";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/eb/1d/eb1d130969b88d4bd9d39f8891e9cec990844008.php b/data/cache/PHPStan/eb/1d/eb1d130969b88d4bd9d39f8891e9cec990844008.php new file mode 100644 index 0000000..504e39a --- /dev/null +++ b/data/cache/PHPStan/eb/1d/eb1d130969b88d4bd9d39f8891e9cec990844008.php @@ -0,0 +1,8 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:63:"Weak maps allow creating a map from objects to arbitrary values";}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:191:"(similar to SplObjectStorage) without preventing the objects that are used +as keys from being garbage collected. If an object key is garbage collected, +it will simply be removed from the map.";}i:2;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@since";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:3:"8.0";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/eb/77/eb77c9a005e659a453b0bc8b5041ef2a462a8015.php b/data/cache/PHPStan/eb/77/eb77c9a005e659a453b0bc8b5041ef2a462a8015.php new file mode 100644 index 0000000..bcb1b50 --- /dev/null +++ b/data/cache/PHPStan/eb/77/eb77c9a005e659a453b0bc8b5041ef2a462a8015.php @@ -0,0 +1,13 @@ + '1603535530', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ErrorInterface.php', + 'modifiedTime' => 1603535530, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/eb/cf/ebcf66005f1f2acb717ffeac4774d1c041c59add.php b/data/cache/PHPStan/eb/cf/ebcf66005f1f2acb717ffeac4774d1c041c59add.php new file mode 100644 index 0000000..5f0f5f4 --- /dev/null +++ b/data/cache/PHPStan/eb/cf/ebcf66005f1f2acb717ffeac4774d1c041c59add.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$offset";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ec/c5/ecc5efd85deeb4d2d6a3f8e16cf1e8471d6364aa.php b/data/cache/PHPStan/ec/c5/ecc5efd85deeb4d2d6a3f8e16cf1e8471d6364aa.php new file mode 100644 index 0000000..5d295e8 --- /dev/null +++ b/data/cache/PHPStan/ec/c5/ecc5efd85deeb4d2d6a3f8e16cf1e8471d6364aa.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$array";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$flags";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ed/b5/edb5d8770b219cfde9b57e0972632076180c0483.php b/data/cache/PHPStan/ed/b5/edb5d8770b219cfde9b57e0972632076180c0483.php new file mode 100644 index 0000000..c9a23e3 --- /dev/null +++ b/data/cache/PHPStan/ed/b5/edb5d8770b219cfde9b57e0972632076180c0483.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"TestCase";}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$testCase";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"TMockedClass";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:5:"$type";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/ed/c6/edc69e39a3a4997e1aec459930c238ce0166f05f.php b/data/cache/PHPStan/ed/c6/edc69e39a3a4997e1aec459930c238ce0166f05f.php new file mode 100644 index 0000000..17646c6 --- /dev/null +++ b/data/cache/PHPStan/ed/c6/edc69e39a3a4997e1aec459930c238ce0166f05f.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/f0/89/f089aed06f5659c1cd3a52f134da3b6c3e2d8647.php b/data/cache/PHPStan/f0/89/f089aed06f5659c1cd3a52f134da3b6c3e2d8647.php new file mode 100644 index 0000000..ba89223 --- /dev/null +++ b/data/cache/PHPStan/f0/89/f089aed06f5659c1cd3a52f134da3b6c3e2d8647.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TInput";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TInput";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$array";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:13:"SplFixedArray";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TInput";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/f6/95/f695a19e30d9cc6991a7a2a70030e0b065aa3c24.php b/data/cache/PHPStan/f6/95/f695a19e30d9cc6991a7a2a70030e0b065aa3c24.php new file mode 100644 index 0000000..f193049 --- /dev/null +++ b/data/cache/PHPStan/f6/95/f695a19e30d9cc6991a7a2a70030e0b065aa3c24.php @@ -0,0 +1,13 @@ + '1603543737', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php', + 'modifiedTime' => 1603543737, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/f7/37/f7371664a9c19e9d8b4a1c2b4e105cd6fd35f0c3.php b/data/cache/PHPStan/f7/37/f7371664a9c19e9d8b4a1c2b4e105cd6fd35f0c3.php new file mode 100644 index 0000000..39a09a2 --- /dev/null +++ b/data/cache/PHPStan/f7/37/f7371664a9c19e9d8b4a1c2b4e105cd6fd35f0c3.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TPriority";}s:10:"isVariadic";b:0;s:13:"parameterName";s:10:"$priority1";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TPriority";}s:10:"isVariadic";b:0;s:13:"parameterName";s:10:"$priority2";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/f7/9a/f79a081e7346c5a2cda149dbaaeef2aea046a252.php b/data/cache/PHPStan/f7/9a/f79a081e7346c5a2cda149dbaaeef2aea046a252.php new file mode 100644 index 0000000..8596662 --- /dev/null +++ b/data/cache/PHPStan/f7/9a/f79a081e7346c5a2cda149dbaaeef2aea046a252.php @@ -0,0 +1,13 @@ + '1603543737', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/AnyType.php', + 'modifiedTime' => 1603543737, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/f7/f2/f7f2d3e743b6119918283d2ce2177a81d949b50c.php b/data/cache/PHPStan/f7/f2/f7f2d3e743b6119918283d2ce2177a81d949b50c.php new file mode 100644 index 0000000..887ceaf --- /dev/null +++ b/data/cache/PHPStan/f7/f2/f7f2d3e743b6119918283d2ce2177a81d949b50c.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"Pair";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:19:"OutOfRangeException";}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/f9/24/f924cd25dc973f55931bea8a8528ec94d3c94041.php b/data/cache/PHPStan/f9/24/f924cd25dc973f55931bea8a8528ec94d3c94041.php new file mode 100644 index 0000000..b3a7647 --- /dev/null +++ b/data/cache/PHPStan/f9/24/f924cd25dc973f55931bea8a8528ec94d3c94041.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"false";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/f9/f8/f9f8270bfe6983a1f413389b25714a94be6cbaaf.php b/data/cache/PHPStan/f9/f8/f9f8270bfe6983a1f413389b25714a94be6cbaaf.php new file mode 100644 index 0000000..29c403c --- /dev/null +++ b/data/cache/PHPStan/f9/f8/f9f8270bfe6983a1f413389b25714a94be6cbaaf.php @@ -0,0 +1,30 @@ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/OptionalType.php-1603543737', + 'data' => + array ( + 'd1d773aeea36a43f14f06b266a0324f4' => + PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'nameScope' => + PHPStan\Analyser\NameScope::__set_state(array( + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'className' => 'Cubicl\\StructureCheck\\Type\\OptionalType', + 'functionName' => 'check', + 'templateTypeMap' => + PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( + 'types' => + array ( + ), + )), + )), + )), + ), +)); \ No newline at end of file diff --git a/data/cache/PHPStan/fb/dc/fbdcb17d80a93cfa22d6a6b6bcb7554780a3115e.php b/data/cache/PHPStan/fb/dc/fbdcb17d80a93cfa22d6a6b6bcb7554780a3115e.php new file mode 100644 index 0000000..b6786a0 --- /dev/null +++ b/data/cache/PHPStan/fb/dc/fbdcb17d80a93cfa22d6a6b6bcb7554780a3115e.php @@ -0,0 +1,6 @@ + '0.4.9', + 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:8:"@extends";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ExtendsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Iterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', +)); \ No newline at end of file diff --git a/data/cache/PHPStan/fc/c4/fcc423010bc45eca703f6bc521b89cc82bfe0ff2.php b/data/cache/PHPStan/fc/c4/fcc423010bc45eca703f6bc521b89cc82bfe0ff2.php new file mode 100644 index 0000000..1d9f7e4 --- /dev/null +++ b/data/cache/PHPStan/fc/c4/fcc423010bc45eca703f6bc521b89cc82bfe0ff2.php @@ -0,0 +1,13 @@ + '1603543737', + 'data' => + array ( + 0 => + array ( + 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php', + 'modifiedTime' => 1603543737, + ), + ), +)); \ No newline at end of file diff --git a/data/cache/nette.configurator/Container_0680f21d46.php b/data/cache/nette.configurator/Container_0680f21d46.php new file mode 100644 index 0000000..fdd563b --- /dev/null +++ b/data/cache/nette.configurator/Container_0680f21d46.php @@ -0,0 +1,5647 @@ + ['018' => true, '0240' => true], + 'phpstan.broker.methodsClassReflectionExtension' => ['069' => true], + 'phpstan.broker.propertiesClassReflectionExtension' => ['070' => true, '073' => true, '0137' => true], + 'phpstan.broker.dynamicFunctionReturnTypeExtension' => [ + '0101' => true, + '0102' => true, + '0103' => true, + '0104' => true, + '0105' => true, + '0107' => true, + '0108' => true, + '0109' => true, + '0110' => true, + '0111' => true, + '0112' => true, + '0113' => true, + '0114' => true, + '0115' => true, + '0116' => true, + '0117' => true, + '0118' => true, + '0119' => true, + '0123' => true, + '0125' => true, + '0126' => true, + '0128' => true, + '0129' => true, + '0130' => true, + '0131' => true, + '0132' => true, + '0133' => true, + '0134' => true, + '0135' => true, + '0136' => true, + '0138' => true, + '0141' => true, + '0142' => true, + '0143' => true, + '0144' => true, + '0145' => true, + '0146' => true, + '0147' => true, + '0148' => true, + '0149' => true, + '0150' => true, + '0151' => true, + '0152' => true, + '0153' => true, + '0154' => true, + '0155' => true, + '0156' => true, + '0177' => true, + '0178' => true, + '0180' => true, + '0181' => true, + '0182' => true, + ], + 'phpstan.typeSpecifier.functionTypeSpecifyingExtension' => [ + '0106' => true, + '0124' => true, + '0139' => true, + '0140' => true, + '0157' => true, + '0158' => true, + '0159' => true, + '0160' => true, + '0161' => true, + '0162' => true, + '0163' => true, + '0164' => true, + '0165' => true, + '0166' => true, + '0167' => true, + '0168' => true, + '0169' => true, + '0170' => true, + '0171' => true, + '0172' => true, + '0173' => true, + '0174' => true, + '0175' => true, + '0176' => true, + '0241' => true, + ], + 'phpstan.broker.dynamicStaticMethodReturnTypeExtension' => ['0120' => true, '0122' => true], + 'phpstan.broker.dynamicMethodReturnTypeExtension' => [ + '0121' => true, + '0127' => true, + '0138' => true, + '0179' => true, + '0244' => true, + '0245' => true, + '0246' => true, + ], + 'phpstan.rules.rule' => [ + '0187' => true, + '0188' => true, + '0189' => true, + '0191' => true, + '0192' => true, + '0193' => true, + '0195' => true, + '0196' => true, + '0197' => true, + '0198' => true, + '0199' => true, + '0200' => true, + '0201' => true, + '0203' => true, + '0204' => true, + '0205' => true, + '0206' => true, + '0207' => true, + '0210' => true, + '0211' => true, + '0212' => true, + '0213' => true, + '0214' => true, + '0215' => true, + '0216' => true, + '0217' => true, + '0218' => true, + '0219' => true, + '0220' => true, + '0221' => true, + '0222' => true, + '0223' => true, + '0227' => true, + '0228' => true, + '0229' => true, + '0230' => true, + '0231' => true, + '0232' => true, + '0233' => true, + '0234' => true, + '0235' => true, + '0236' => true, + 'rules.0' => true, + 'rules.1' => true, + 'rules.10' => true, + 'rules.11' => true, + 'rules.12' => true, + 'rules.13' => true, + 'rules.14' => true, + 'rules.15' => true, + 'rules.16' => true, + 'rules.17' => true, + 'rules.18' => true, + 'rules.19' => true, + 'rules.2' => true, + 'rules.20' => true, + 'rules.21' => true, + 'rules.22' => true, + 'rules.23' => true, + 'rules.24' => true, + 'rules.25' => true, + 'rules.26' => true, + 'rules.27' => true, + 'rules.28' => true, + 'rules.29' => true, + 'rules.3' => true, + 'rules.30' => true, + 'rules.31' => true, + 'rules.32' => true, + 'rules.33' => true, + 'rules.34' => true, + 'rules.35' => true, + 'rules.36' => true, + 'rules.37' => true, + 'rules.38' => true, + 'rules.39' => true, + 'rules.4' => true, + 'rules.40' => true, + 'rules.41' => true, + 'rules.42' => true, + 'rules.43' => true, + 'rules.44' => true, + 'rules.45' => true, + 'rules.46' => true, + 'rules.47' => true, + 'rules.48' => true, + 'rules.49' => true, + 'rules.5' => true, + 'rules.50' => true, + 'rules.51' => true, + 'rules.52' => true, + 'rules.53' => true, + 'rules.54' => true, + 'rules.55' => true, + 'rules.56' => true, + 'rules.57' => true, + 'rules.58' => true, + 'rules.59' => true, + 'rules.6' => true, + 'rules.60' => true, + 'rules.61' => true, + 'rules.62' => true, + 'rules.63' => true, + 'rules.64' => true, + 'rules.65' => true, + 'rules.66' => true, + 'rules.67' => true, + 'rules.68' => true, + 'rules.69' => true, + 'rules.7' => true, + 'rules.70' => true, + 'rules.71' => true, + 'rules.72' => true, + 'rules.73' => true, + 'rules.74' => true, + 'rules.75' => true, + 'rules.76' => true, + 'rules.77' => true, + 'rules.78' => true, + 'rules.79' => true, + 'rules.8' => true, + 'rules.80' => true, + 'rules.81' => true, + 'rules.82' => true, + 'rules.83' => true, + 'rules.84' => true, + 'rules.85' => true, + 'rules.86' => true, + 'rules.87' => true, + 'rules.88' => true, + 'rules.89' => true, + 'rules.9' => true, + 'rules.90' => true, + 'rules.91' => true, + 'rules.92' => true, + 'rules.93' => true, + 'rules.94' => true, + 'rules.95' => true, + 'rules.96' => true, + 'rules.97' => true, + ], + 'phpstan.typeSpecifier.methodTypeSpecifyingExtension' => ['0242' => true], + 'phpstan.typeSpecifier.staticMethodTypeSpecifyingExtension' => ['0243' => true], + ]; + + protected $types = ['container' => '_HumbugBox96739a27ace4\Nette\DI\Container']; + protected $aliases = []; + + protected $wiring = [ + '_HumbugBox96739a27ace4\Nette\DI\Container' => [['container']], + 'PHPStan\Rules\Rule' => [ + 0 => [ + '092', + '0187', + '0188', + '0189', + '0190', + '0191', + '0192', + '0193', + '0194', + '0195', + '0196', + '0197', + '0198', + '0199', + '0200', + '0201', + '0202', + '0203', + '0204', + '0205', + '0206', + '0207', + '0208', + '0209', + '0210', + '0211', + '0212', + '0213', + '0214', + '0215', + '0216', + '0217', + '0218', + '0219', + '0220', + '0221', + '0222', + '0223', + '0224', + '0225', + '0226', + '0227', + '0228', + '0229', + '0230', + '0231', + '0232', + '0233', + '0234', + '0235', + '0236', + '0237', + '0238', + '0239', + ], + 2 => [ + 'rules.0', + 'rules.1', + 'rules.2', + 'rules.3', + 'rules.4', + 'rules.5', + 'rules.6', + 'rules.7', + 'rules.8', + 'rules.9', + 'rules.10', + 'rules.11', + 'rules.12', + 'rules.13', + 'rules.14', + 'rules.15', + 'rules.16', + 'rules.17', + 'rules.18', + 'rules.19', + 'rules.20', + 'rules.21', + 'rules.22', + 'rules.23', + 'rules.24', + 'rules.25', + 'rules.26', + 'rules.27', + 'rules.28', + 'rules.29', + 'rules.30', + 'rules.31', + 'rules.32', + 'rules.33', + 'rules.34', + 'rules.35', + 'rules.36', + 'rules.37', + 'rules.38', + 'rules.39', + 'rules.40', + 'rules.41', + 'rules.42', + 'rules.43', + 'rules.44', + 'rules.45', + 'rules.46', + 'rules.47', + 'rules.48', + 'rules.49', + 'rules.50', + 'rules.51', + 'rules.52', + 'rules.53', + 'rules.54', + 'rules.55', + 'rules.56', + 'rules.57', + 'rules.58', + 'rules.59', + 'rules.60', + 'rules.61', + 'rules.62', + 'rules.63', + 'rules.64', + 'rules.65', + 'rules.66', + 'rules.67', + 'rules.68', + 'rules.69', + 'rules.70', + 'rules.71', + 'rules.72', + 'rules.73', + 'rules.74', + 'rules.75', + 'rules.76', + 'rules.77', + 'rules.78', + 'rules.79', + 'rules.80', + 'rules.81', + 'rules.82', + 'rules.83', + 'rules.84', + 'rules.85', + 'rules.86', + 'rules.87', + 'rules.88', + 'rules.89', + 'rules.90', + 'rules.91', + 'rules.92', + 'rules.93', + 'rules.94', + 'rules.95', + 'rules.96', + 'rules.97', + ], + ], + 'PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule' => [2 => ['rules.0']], + 'PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule' => [2 => ['rules.1']], + 'PHPStan\Rules\Classes\ClassConstantRule' => [2 => ['rules.2']], + 'PHPStan\Rules\Classes\DuplicateDeclarationRule' => [2 => ['rules.3']], + 'PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule' => [2 => ['rules.4']], + 'PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule' => [2 => ['rules.5']], + 'PHPStan\Rules\Classes\ExistingClassInClassExtendsRule' => [2 => ['rules.6']], + 'PHPStan\Rules\Classes\ExistingClassInTraitUseRule' => [2 => ['rules.7']], + 'PHPStan\Rules\Classes\InstantiationRule' => [2 => ['rules.8']], + 'PHPStan\Rules\Classes\NewStaticRule' => [2 => ['rules.9']], + 'PHPStan\Rules\Exceptions\ThrowExpressionRule' => [2 => ['rules.10']], + 'PHPStan\Rules\Functions\CallToFunctionParametersRule' => [2 => ['rules.11']], + 'PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule' => [2 => ['rules.12']], + 'PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule' => [2 => ['rules.13']], + 'PHPStan\Rules\Functions\ExistingClassesInTypehintsRule' => [2 => ['rules.14']], + 'PHPStan\Rules\Functions\InnerFunctionRule' => [2 => ['rules.15']], + 'PHPStan\Rules\Functions\PrintfParametersRule' => [2 => ['rules.16']], + 'PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule' => [2 => ['rules.17']], + 'PHPStan\Rules\Methods\ExistingClassesInTypehintsRule' => [2 => ['rules.18']], + 'PHPStan\Rules\Methods\MissingMethodImplementationRule' => [2 => ['rules.19']], + 'PHPStan\Rules\Properties\AccessPropertiesInAssignRule' => [2 => ['rules.20']], + 'PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule' => [2 => ['rules.21']], + 'PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule' => [2 => ['rules.22']], + 'PHPStan\Rules\Variables\UnsetRule' => [2 => ['rules.23']], + 'PHPStan\Rules\Classes\UnusedConstructorParametersRule' => [2 => ['rules.24']], + 'PHPStan\Rules\Constants\ConstantRule' => [2 => ['rules.25']], + 'PHPStan\Rules\Functions\UnusedClosureUsesRule' => [2 => ['rules.26']], + 'PHPStan\Rules\Variables\VariableCertaintyInIssetRule' => [2 => ['rules.27']], + 'PHPStan\Rules\Cast\EchoRule' => [2 => ['rules.28']], + 'PHPStan\Rules\Cast\InvalidCastRule' => [2 => ['rules.29']], + 'PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule' => [2 => ['rules.30']], + 'PHPStan\Rules\Cast\PrintRule' => [2 => ['rules.31']], + 'PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule' => [2 => ['rules.32']], + 'PHPStan\Rules\Generics\ClassAncestorsRule' => [2 => ['rules.33']], + 'PHPStan\Rules\Generics\ClassTemplateTypeRule' => [2 => ['rules.34']], + 'PHPStan\Rules\Generics\FunctionTemplateTypeRule' => [2 => ['rules.35']], + 'PHPStan\Rules\Generics\FunctionSignatureVarianceRule' => [2 => ['rules.36']], + 'PHPStan\Rules\Generics\InterfaceAncestorsRule' => [2 => ['rules.37']], + 'PHPStan\Rules\Generics\InterfaceTemplateTypeRule' => [2 => ['rules.38']], + 'PHPStan\Rules\Generics\MethodTemplateTypeRule' => [2 => ['rules.39']], + 'PHPStan\Rules\Generics\MethodSignatureVarianceRule' => [2 => ['rules.40']], + 'PHPStan\Rules\Generics\TraitTemplateTypeRule' => [2 => ['rules.41']], + 'PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule' => [2 => ['rules.42']], + 'PHPStan\Rules\Operators\InvalidBinaryOperationRule' => [2 => ['rules.43']], + 'PHPStan\Rules\Operators\InvalidUnaryOperationRule' => [2 => ['rules.44']], + 'PHPStan\Rules\Operators\InvalidComparisonOperationRule' => [2 => ['rules.45']], + 'PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule' => [2 => ['rules.46']], + 'PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule' => [2 => ['rules.47']], + 'PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule' => [2 => ['rules.48']], + 'PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule' => [2 => ['rules.49']], + 'PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule' => [2 => ['rules.50']], + 'PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule' => [2 => ['rules.51']], + 'PHPStan\Rules\Arrays\AppendedArrayItemTypeRule' => [2 => ['rules.52']], + 'PHPStan\Rules\Arrays\IterableInForeachRule' => [2 => ['rules.53']], + 'PHPStan\Rules\Arrays\OffsetAccessAssignmentRule' => [2 => ['rules.54']], + 'PHPStan\Rules\Arrays\OffsetAccessAssignOpRule' => [2 => ['rules.55']], + 'PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule' => [2 => ['rules.56']], + 'PHPStan\Rules\Arrays\UnpackIterableInArrayRule' => [2 => ['rules.57']], + 'PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule' => [2 => ['rules.58']], + 'PHPStan\Rules\Functions\ClosureReturnTypeRule' => [2 => ['rules.59']], + 'PHPStan\Rules\Generators\YieldTypeRule' => [2 => ['rules.60']], + 'PHPStan\Rules\Methods\ReturnTypeRule' => [2 => ['rules.61']], + 'PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule' => [2 => ['rules.62']], + 'PHPStan\Rules\Properties\TypesAssignedToPropertiesRule' => [2 => ['rules.63']], + 'PHPStan\Rules\Variables\ThrowTypeRule' => [2 => ['rules.64']], + 'PHPStan\Rules\Variables\VariableCloningRule' => [2 => ['rules.65']], + 'PHPStan\Rules\Arrays\DeadForeachRule' => [2 => ['rules.66']], + 'PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule' => [2 => ['rules.67']], + 'PHPStan\Rules\DeadCode\NoopRule' => [2 => ['rules.68']], + 'PHPStan\Rules\DeadCode\UnreachableStatementRule' => [2 => ['rules.69']], + 'PHPStan\Rules\Exceptions\DeadCatchRule' => [2 => ['rules.70']], + 'PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule' => [2 => ['rules.71']], + 'PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule' => [2 => ['rules.72']], + 'PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule' => [2 => ['rules.73']], + 'PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule' => [2 => ['rules.74']], + 'PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule' => [2 => ['rules.75']], + 'PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule' => [2 => ['rules.76']], + 'PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule' => [2 => ['rules.77']], + 'PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule' => [2 => ['rules.78']], + 'PHPStan\Rules\Methods\MissingMethodParameterTypehintRule' => [2 => ['rules.79']], + 'PHPStan\Rules\Methods\MissingMethodReturnTypehintRule' => [2 => ['rules.80']], + 'PHPStan\Rules\Properties\MissingPropertyTypehintRule' => [2 => ['rules.81']], + 'PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule' => [2 => ['rules.82']], + 'PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule' => [2 => ['rules.83']], + 'PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule' => [2 => ['rules.84']], + 'PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule' => [2 => ['rules.85']], + 'PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule' => [2 => ['rules.86']], + 'PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule' => [2 => ['rules.87']], + 'PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule' => [2 => ['rules.88']], + 'PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule' => [2 => ['rules.89']], + 'PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule' => [2 => ['rules.90']], + 'PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule' => [2 => ['rules.91']], + 'PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule' => [2 => ['rules.92']], + 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule' => [2 => ['rules.93']], + 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule' => [2 => ['rules.94']], + 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule' => [2 => ['rules.95']], + 'PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule' => [2 => ['rules.96']], + 'PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule' => [2 => ['rules.97']], + 'PhpParser\BuilderFactory' => [['01']], + 'PHPStan\Parser\LexerFactory' => [['02']], + 'PhpParser\NodeVisitorAbstract' => [['03', '04', '039', '050', '055', '060']], + 'PhpParser\NodeVisitor' => [['03', '04', '039', '050', '055', '060']], + 'PhpParser\NodeVisitor\NameResolver' => [['03']], + 'PhpParser\NodeVisitor\NodeConnectingVisitor' => [['04']], + 'PhpParser\PrettyPrinterAbstract' => [['05']], + 'PhpParser\PrettyPrinter\Standard' => [['05']], + 'PHPStan\Broker\AnonymousClassNameHelper' => [['06']], + 'PHPStan\Php\PhpVersion' => [['07']], + 'PHPStan\Php\PhpVersionFactory' => [['08']], + 'PHPStan\Php\PhpVersionFactoryFactory' => [['09']], + 'PHPStan\PhpDocParser\Lexer\Lexer' => [['010']], + 'PHPStan\PhpDocParser\Parser\TypeParser' => [['011']], + 'PHPStan\PhpDocParser\Parser\ConstExprParser' => [['012']], + 'PHPStan\PhpDocParser\Parser\PhpDocParser' => [['013']], + 'PHPStan\PhpDoc\PhpDocInheritanceResolver' => [['014']], + 'PHPStan\PhpDoc\PhpDocNodeResolver' => [['015']], + 'PHPStan\PhpDoc\PhpDocStringResolver' => [['016']], + 'PHPStan\PhpDoc\ConstExprNodeResolver' => [['017']], + 'PHPStan\PhpDoc\TypeNodeResolverExtension' => [['018', '0240']], + 'PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension' => [['018']], + 'PHPStan\PhpDoc\TypeNodeResolver' => [['019']], + 'PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider' => [['020']], + 'PHPStan\PhpDoc\TypeStringResolver' => [['021']], + 'PHPStan\PhpDoc\StubValidator' => [['022']], + 'PHPStan\Analyser\Analyser' => [['023']], + 'PHPStan\Analyser\FileAnalyser' => [['024']], + 'PHPStan\Analyser\IgnoredErrorHelper' => [['025']], + 'PHPStan\Analyser\ScopeFactory' => [['026']], + 'PHPStan\Analyser\LazyScopeFactory' => [['026']], + 'PHPStan\Analyser\NodeScopeResolver' => [['027']], + 'PHPStan\Analyser\ResultCache\ResultCacheManagerFactory' => [['028']], + 'PHPStan\Analyser\ResultCache\ResultCacheClearer' => [['029']], + 'PHPStan\Cache\Cache' => [['030']], + 'PHPStan\Command\AnalyseApplication' => [['031']], + 'PHPStan\Command\AnalyserRunner' => [['032']], + 'PHPStan\Command\FixerApplication' => [['033']], + 'PHPStan\Command\IgnoredRegexValidator' => [['034']], + 'PHPStan\Dependency\DependencyDumper' => [['035']], + 'PHPStan\Dependency\DependencyResolver' => [['036']], + 'PHPStan\Dependency\ExportedNodeFetcher' => [['037']], + 'PHPStan\Dependency\ExportedNodeResolver' => [['038']], + 'PHPStan\Dependency\ExportedNodeVisitor' => [['039']], + 'PHPStan\DependencyInjection\Container' => [['040'], ['041']], + 'PHPStan\DependencyInjection\Nette\NetteContainer' => [['041']], + 'PHPStan\DependencyInjection\DerivativeContainerFactory' => [['042']], + 'PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider' => [['043']], + 'PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider' => [['044']], + 'PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider' => [['045']], + 'PHPStan\File\FileHelper' => [['046']], + 'PHPStan\File\FileExcluder' => [['047']], + 'PHPStan\File\FileFinder' => [['048']], + 'PHPStan\File\FileMonitor' => [['049']], + 'PHPStan\NodeVisitor\StatementOrderVisitor' => [['050']], + 'PHPStan\Parallel\ParallelAnalyser' => [['051']], + 'PHPStan\Parallel\Scheduler' => [['052']], + 'PHPStan\Parser\Parser' => [ + 0 => ['053'], + 2 => [1 => 'currentPhpVersionRichParser', 'currentPhpVersionSimpleParser', 'php8Parser', 'pathRoutingParser'], + ], + 'PHPStan\Parser\CachedParser' => [['053']], + 'PHPStan\Parser\FunctionCallStatementFinder' => [['054']], + 'PHPStan\Parser\NodeChildrenVisitor' => [['055']], + 'PHPStan\Process\CpuCoreCounter' => [['056']], + 'PHPStan\Reflection\FunctionReflectionFactory' => [['057']], + 'PHPStan\Reflection\MethodsClassReflectionExtension' => [['058', '069', '071']], + 'PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension' => [['058']], + 'PHPStan\Reflection\PropertiesClassReflectionExtension' => [['059', '070', '071', '073', '0137']], + 'PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension' => [['059']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor' => [['060']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher' => [['061']], + '_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\SourceLocator' => [ + 0 => ['062'], + 2 => [1 => 'betterReflectionSourceLocator'], + ], + 'PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator' => [['062']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker' => [['063']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory' => [['064']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository' => [['065']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory' => [['066']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory' => [['067']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository' => [['068']], + 'PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension' => [['069']], + 'PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension' => [['070']], + 'PHPStan\Reflection\Php\PhpClassReflectionExtension' => [['071']], + 'PHPStan\Reflection\Php\PhpMethodReflectionFactory' => [['072']], + 'PHPStan\Reflection\BrokerAwareExtension' => [['073', '0178']], + 'PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension' => [['073']], + 'PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider' => [['074']], + 'PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider' => [['075']], + 'PHPStan\Reflection\SignatureMap\SignatureMapParser' => [['076']], + 'PHPStan\Reflection\SignatureMap\SignatureMapProvider' => [['080'], ['077', '078']], + 'PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider' => [['077']], + 'PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider' => [['078']], + 'PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory' => [['079']], + 'PHPStan\Rules\ClassCaseSensitivityCheck' => [['081']], + 'PHPStan\Rules\Comparison\ConstantConditionRuleHelper' => [['082']], + 'PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper' => [['083']], + 'PHPStan\Rules\FunctionCallParametersCheck' => [['084']], + 'PHPStan\Rules\FunctionDefinitionCheck' => [['085']], + 'PHPStan\Rules\FunctionReturnTypeCheck' => [['086']], + 'PHPStan\Rules\Generics\GenericAncestorsCheck' => [['087']], + 'PHPStan\Rules\Generics\GenericObjectTypeCheck' => [['088']], + 'PHPStan\Rules\Generics\TemplateTypeCheck' => [['089']], + 'PHPStan\Rules\Generics\VarianceCheck' => [['090']], + 'PHPStan\Rules\IssetCheck' => [['091']], + 'PHPStan\Rules\Methods\MethodSignatureRule' => [['092']], + 'PHPStan\Rules\MissingTypehintCheck' => [['093']], + 'PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider' => [['094']], + 'PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider' => [['094']], + 'PHPStan\Rules\Properties\PropertyDescriptor' => [['095']], + 'PHPStan\Rules\Properties\PropertyReflectionFinder' => [['096']], + 'PHPStan\Rules\RegistryFactory' => [['097']], + 'PHPStan\Rules\RuleLevelHelper' => [['098']], + 'PHPStan\Rules\UnusedFunctionParametersCheck' => [['099']], + 'PHPStan\Type\FileTypeMapper' => [['0100']], + 'PHPStan\Type\DynamicFunctionReturnTypeExtension' => [ + [ + '0101', + '0102', + '0103', + '0104', + '0105', + '0107', + '0108', + '0109', + '0110', + '0111', + '0112', + '0113', + '0114', + '0115', + '0116', + '0117', + '0118', + '0119', + '0123', + '0125', + '0126', + '0128', + '0129', + '0130', + '0131', + '0132', + '0133', + '0134', + '0135', + '0136', + '0138', + '0141', + '0142', + '0143', + '0144', + '0145', + '0146', + '0147', + '0148', + '0149', + '0150', + '0151', + '0152', + '0153', + '0154', + '0155', + '0156', + '0177', + '0178', + '0180', + '0181', + '0182', + ], + ], + 'PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension' => [['0101']], + 'PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension' => [['0102']], + 'PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension' => [['0103']], + 'PHPStan\Type\Php\ArrayFilterFunctionReturnTypeReturnTypeExtension' => [['0104']], + 'PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension' => [['0105']], + 'PHPStan\Type\FunctionTypeSpecifyingExtension' => [ + [ + '0106', + '0124', + '0139', + '0140', + '0157', + '0158', + '0159', + '0160', + '0161', + '0162', + '0163', + '0164', + '0165', + '0166', + '0167', + '0168', + '0169', + '0170', + '0171', + '0172', + '0173', + '0174', + '0175', + '0176', + '0241', + ], + ], + 'PHPStan\Analyser\TypeSpecifierAwareExtension' => [ + [ + '0106', + '0124', + '0139', + '0140', + '0157', + '0158', + '0159', + '0160', + '0161', + '0162', + '0163', + '0164', + '0165', + '0166', + '0167', + '0168', + '0169', + '0170', + '0171', + '0172', + '0173', + '0174', + '0175', + '0176', + '0178', + '0241', + '0242', + '0243', + ], + ], + 'PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension' => [['0106']], + 'PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension' => [['0107']], + 'PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension' => [['0108']], + 'PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension' => [['0109']], + 'PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension' => [['0110']], + 'PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension' => [['0111']], + 'PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension' => [['0112']], + 'PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension' => [['0113']], + 'PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension' => [['0114']], + 'PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension' => [['0115']], + 'PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension' => [['0116']], + 'PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension' => [['0117']], + 'PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension' => [['0118']], + 'PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension' => [['0119']], + 'PHPStan\Type\DynamicStaticMethodReturnTypeExtension' => [['0120', '0122']], + 'PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension' => [['0120']], + 'PHPStan\Type\DynamicMethodReturnTypeExtension' => [['0121', '0127', '0138', '0179', '0244', '0245', '0246']], + 'PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension' => [['0121']], + 'PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension' => [['0122']], + 'PHPStan\Type\Php\CountFunctionReturnTypeExtension' => [['0123']], + 'PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension' => [['0124']], + 'PHPStan\Type\Php\CurlInitReturnTypeExtension' => [['0125']], + 'PHPStan\Type\Php\DateFunctionReturnTypeExtension' => [['0126']], + 'PHPStan\Type\Php\DsMapDynamicReturnTypeExtension' => [['0127']], + 'PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension' => [['0128']], + 'PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension' => [['0129']], + 'PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension' => [['0130']], + 'PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension' => [['0131']], + 'PHPStan\Type\Php\GetClassDynamicReturnTypeExtension' => [['0132']], + 'PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension' => [['0133']], + 'PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension' => [['0134']], + 'PHPStan\Type\Php\HashHmacFunctionsReturnTypeExtension' => [['0135']], + 'PHPStan\Type\Php\HashFunctionsReturnTypeExtension' => [['0136']], + 'PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension' => [['0137']], + 'PHPStan\Type\Php\StatDynamicReturnTypeExtension' => [['0138']], + 'PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension' => [['0139']], + 'PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension' => [['0140']], + 'PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension' => [['0141']], + 'PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension' => [['0142']], + 'PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension' => [['0143']], + 'PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension' => [['0144']], + 'PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension' => [['0145']], + 'PHPStan\Type\Php\VarExportFunctionDynamicReturnTypeExtension' => [['0146']], + 'PHPStan\Type\Php\MbFunctionsReturnTypeExtension' => [['0147']], + 'PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension' => [['0148']], + 'PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension' => [['0149']], + 'PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension' => [['0150']], + 'PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension' => [['0151']], + 'PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension' => [['0152']], + 'PHPStan\Type\Php\PowFunctionReturnTypeExtension' => [['0153']], + 'PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension' => [['0154']], + 'PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension' => [['0155']], + 'PHPStan\Type\Php\RangeFunctionReturnTypeExtension' => [['0156']], + 'PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension' => [['0157']], + 'PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension' => [['0158']], + 'PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension' => [['0159']], + 'PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension' => [['0160']], + 'PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension' => [['0161']], + 'PHPStan\Type\Php\IsIntFunctionTypeSpecifyingExtension' => [['0162']], + 'PHPStan\Type\Php\IsFloatFunctionTypeSpecifyingExtension' => [['0163']], + 'PHPStan\Type\Php\IsNullFunctionTypeSpecifyingExtension' => [['0164']], + 'PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension' => [['0165']], + 'PHPStan\Type\Php\IsBoolFunctionTypeSpecifyingExtension' => [['0166']], + 'PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension' => [['0167']], + 'PHPStan\Type\Php\IsCountableFunctionTypeSpecifyingExtension' => [['0168']], + 'PHPStan\Type\Php\IsResourceFunctionTypeSpecifyingExtension' => [['0169']], + 'PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension' => [['0170']], + 'PHPStan\Type\Php\IsStringFunctionTypeSpecifyingExtension' => [['0171']], + 'PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension' => [['0172']], + 'PHPStan\Type\Php\IsObjectFunctionTypeSpecifyingExtension' => [['0173']], + 'PHPStan\Type\Php\IsNumericFunctionTypeSpecifyingExtension' => [['0174']], + 'PHPStan\Type\Php\IsScalarFunctionTypeSpecifyingExtension' => [['0175']], + 'PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension' => [['0176']], + 'PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension' => [['0177']], + 'PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension' => [['0178']], + 'PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension' => [['0179']], + 'PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension' => [['0180']], + 'PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension' => [['0181']], + 'PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension' => [['0182']], + 'PHPStan\Analyser\TypeSpecifier' => [['typeSpecifier']], + 'PHPStan\Analyser\TypeSpecifierFactory' => [['typeSpecifierFactory']], + 'PHPStan\File\RelativePathHelper' => [ + 0 => ['relativePathHelper'], + 2 => [1 => 'simpleRelativePathHelper', 'parentDirectoryRelativePathHelper'], + ], + 'PHPStan\File\ParentDirectoryRelativePathHelper' => [2 => ['parentDirectoryRelativePathHelper']], + 'PHPStan\Reflection\ReflectionProvider' => [ + ['reflectionProvider'], + ['broker', 'innerRuntimeReflectionProvider'], + [2 => 'betterReflectionProvider', 'runtimeReflectionProvider'], + ], + 'PHPStan\Broker\Broker' => [['broker']], + 'PHPStan\Broker\BrokerFactory' => [['brokerFactory']], + 'PHPStan\Cache\CacheStorage' => [2 => ['cacheStorage']], + 'PHPStan\Cache\FileCacheStorage' => [2 => ['cacheStorage']], + 'PHPStan\Parser\RichParser' => [2 => ['currentPhpVersionRichParser']], + 'PHPStan\Parser\SimpleParser' => [2 => ['currentPhpVersionSimpleParser', 'php8Parser']], + 'PhpParser\Parser' => [0 => ['phpParserDecorator'], 2 => [1 => 'currentPhpVersionPhpParser', 'php8PhpParser']], + 'PHPStan\Parser\PhpParserDecorator' => [['phpParserDecorator']], + 'PhpParser\Lexer' => [2 => ['currentPhpVersionLexer', 'php8Lexer']], + 'PhpParser\ParserAbstract' => [2 => ['currentPhpVersionPhpParser', 'php8PhpParser']], + 'PhpParser\Parser\Php7' => [2 => ['currentPhpVersionPhpParser', 'php8PhpParser']], + 'PHPStan\Rules\Registry' => [['registry']], + 'PHPStan\PhpDoc\StubPhpDocProvider' => [['stubPhpDocProvider']], + 'PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory' => [['reflectionProviderFactory']], + '_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector' => [ + 2 => ['betterReflectionClassReflector', 'nodeScopeResolverClassReflector'], + ], + '_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\Reflector' => [ + 2 => [ + 'betterReflectionClassReflector', + 'nodeScopeResolverClassReflector', + 'betterReflectionFunctionReflector', + 'betterReflectionConstantReflector', + ], + ], + 'PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector' => [ + 2 => ['betterReflectionClassReflector', 'nodeScopeResolverClassReflector'], + ], + '_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector' => [ + 2 => ['betterReflectionFunctionReflector'], + ], + 'PHPStan\Reflection\BetterReflection\Reflector\MemoizingFunctionReflector' => [ + 2 => ['betterReflectionFunctionReflector'], + ], + '_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector' => [ + 2 => ['betterReflectionConstantReflector'], + ], + 'PHPStan\Reflection\BetterReflection\Reflector\MemoizingConstantReflector' => [ + 2 => ['betterReflectionConstantReflector'], + ], + 'PHPStan\Reflection\BetterReflection\BetterReflectionProvider' => [2 => ['betterReflectionProvider']], + 'Hoa\Compiler\Llk\Parser' => [['regexParser']], + 'Hoa\File\File' => [['regexGrammarStream']], + 'Hoa\File\Generic' => [['regexGrammarStream']], + 'Hoa\Stream\Stream' => [['regexGrammarStream']], + 'Hoa\Stream\IStream\Stream' => [['regexGrammarStream']], + 'Hoa\Event\Listenable' => [['regexGrammarStream']], + 'Hoa\Event\Source' => [['regexGrammarStream']], + 'Hoa\Stream\IStream\Pathable' => [['regexGrammarStream']], + 'Hoa\Stream\IStream\Statable' => [['regexGrammarStream']], + 'Hoa\Stream\IStream\Touchable' => [['regexGrammarStream']], + 'Hoa\Stream\IStream\Bufferable' => [['regexGrammarStream']], + 'Hoa\Stream\IStream\Lockable' => [['regexGrammarStream']], + 'Hoa\Stream\IStream\Pointable' => [['regexGrammarStream']], + 'Hoa\Stream\IStream\In' => [['regexGrammarStream']], + 'Hoa\File\Read' => [['regexGrammarStream']], + 'PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider' => [2 => ['runtimeReflectionProvider']], + 'PHPStan\Reflection\Runtime\RuntimeReflectionProvider' => [['innerRuntimeReflectionProvider']], + 'PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory' => [['0183']], + 'PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory' => [['0184']], + '_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\SourceStubber' => [ + 1 => ['0185', '0186'], + ], + '_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber' => [ + ['0185'], + ], + '_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber' => [['0186']], + 'PhpParser\Lexer\Emulative' => [2 => ['php8Lexer']], + 'PHPStan\Parser\PathRoutingParser' => [2 => ['pathRoutingParser']], + 'PHPStan\Command\ErrorFormatter\ErrorFormatter' => [ + [ + 'errorFormatter.raw', + 'errorFormatter.baselineNeon', + 'errorFormatter.table', + 'errorFormatter.checkstyle', + 'errorFormatter.json', + 'errorFormatter.junit', + 'errorFormatter.prettyJson', + 'errorFormatter.gitlab', + 'errorFormatter.github', + 'errorFormatter.teamcity', + ], + ], + 'PHPStan\Command\ErrorFormatter\RawErrorFormatter' => [['errorFormatter.raw']], + 'PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter' => [['errorFormatter.baselineNeon']], + 'PHPStan\Command\ErrorFormatter\TableErrorFormatter' => [['errorFormatter.table']], + 'PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter' => [['errorFormatter.checkstyle']], + 'PHPStan\Command\ErrorFormatter\JsonErrorFormatter' => [['errorFormatter.json', 'errorFormatter.prettyJson']], + 'PHPStan\Command\ErrorFormatter\JunitErrorFormatter' => [['errorFormatter.junit']], + 'PHPStan\Command\ErrorFormatter\GitlabErrorFormatter' => [['errorFormatter.gitlab']], + 'PHPStan\Command\ErrorFormatter\GithubErrorFormatter' => [['errorFormatter.github']], + 'PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter' => [['errorFormatter.teamcity']], + 'PHPStan\Rules\Classes\ExistingClassInInstanceOfRule' => [['0187']], + 'PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule' => [['0188']], + 'PHPStan\Rules\Functions\CallToNonExistentFunctionRule' => [['0189']], + 'PHPStan\Rules\Functions\ClosureUsesThisRule' => [['0190']], + 'PHPStan\Rules\Methods\CallMethodsRule' => [['0191']], + 'PHPStan\Rules\Methods\CallStaticMethodsRule' => [['0192']], + 'PHPStan\Rules\Methods\OverridingMethodRule' => [['0193']], + 'PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule' => [['0194']], + 'PHPStan\Rules\Missing\MissingReturnRule' => [['0195']], + 'PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule' => [['0196']], + 'PHPStan\Rules\Namespaces\ExistingNamesInUseRule' => [['0197']], + 'PHPStan\Rules\Operators\InvalidIncDecOperationRule' => [['0198']], + 'PHPStan\Rules\Properties\AccessPropertiesRule' => [['0199']], + 'PHPStan\Rules\Properties\AccessStaticPropertiesRule' => [['0200']], + 'PHPStan\Rules\Properties\ExistingClassesInPropertiesRule' => [['0201']], + 'PHPStan\Rules\Properties\UninitializedPropertyRule' => [['0202']], + 'PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule' => [['0203']], + 'PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule' => [['0204']], + 'PHPStan\Rules\Variables\CompactVariablesRule' => [['0205']], + 'PHPStan\Rules\Variables\DefinedVariableRule' => [['0206']], + 'PHPStan\Rules\Regexp\RegularExpressionPatternRule' => [['0207']], + 'PHPStan\Rules\Whitespace\FileWhitespaceRule' => [['0208']], + 'PHPStan\Rules\Variables\VariableCertaintyNullCoalesceRule' => [['0209']], + 'PHPStan\Rules\Classes\MixinRule' => [['0210']], + 'PHPStan\Rules\Functions\CallCallablesRule' => [['0211']], + 'PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule' => [['0212']], + 'PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule' => [['0213']], + 'PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule' => [['0214']], + 'PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule' => [['0215']], + 'PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule' => [['0216']], + 'PHPStan\Rules\Functions\ReturnTypeRule' => [['0217']], + 'PHPStan\Rules\Generators\YieldFromTypeRule' => [['0218']], + 'PHPStan\Rules\Generators\YieldInGeneratorRule' => [['0219']], + 'PHPStan\Rules\Classes\ImpossibleInstanceOfRule' => [['0220']], + 'PHPStan\Rules\Comparison\BooleanAndConstantConditionRule' => [['0221']], + 'PHPStan\Rules\Comparison\BooleanOrConstantConditionRule' => [['0222']], + 'PHPStan\Rules\Comparison\BooleanNotConstantConditionRule' => [['0223']], + 'PHPStan\Rules\DeadCode\UnusedPrivateConstantRule' => [['0224']], + 'PHPStan\Rules\DeadCode\UnusedPrivateMethodRule' => [['0225']], + 'PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule' => [['0226']], + 'PHPStan\Rules\Comparison\ElseIfConstantConditionRule' => [['0227']], + 'PHPStan\Rules\Comparison\IfConstantConditionRule' => [['0228']], + 'PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule' => [['0229']], + 'PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule' => [['0230']], + 'PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule' => [['0231']], + 'PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule' => [['0232']], + 'PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule' => [['0233']], + 'PHPStan\Rules\Comparison\UnreachableIfBranchesRule' => [['0234']], + 'PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule' => [['0235']], + 'PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule' => [['0236']], + 'PHPStan\Rules\Variables\IssetRule' => [['0237']], + 'PHPStan\Rules\Variables\NullCoalesceRule' => [['0238']], + 'PHPStan\Rules\Functions\RandomIntParametersRule' => [['0239']], + 'PHPStan\PhpDoc\TypeNodeResolverAwareExtension' => [['0240']], + 'PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension' => [['0240']], + 'PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension' => [['0241']], + 'PHPStan\Type\MethodTypeSpecifyingExtension' => [['0242']], + 'PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension' => [['0242']], + 'PHPStan\Type\StaticMethodTypeSpecifyingExtension' => [['0243']], + 'PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension' => [['0243']], + 'PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension' => [['0244']], + 'PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension' => [['0245']], + 'PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension' => [['0246']], + 'PHPStan\Rules\Deprecations\DeprecatedClassHelper' => [['0247']], + ]; + + + public function __construct(array $params = []) + { + parent::__construct($params); + $this->parameters += [ + 'bootstrap' => null, + 'bootstrapFiles' => [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/runtime/ReflectionUnionType.php', + ], + 'excludes_analyse' => [], + 'autoload_directories' => [], + 'autoload_files' => [], + 'level' => 'max', + 'paths' => ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], + 'featureToggles' => [ + 'bleedingEdge' => false, + 'disableRuntimeReflectionProvider' => false, + 'closureUsesThis' => false, + 'randomIntParameters' => false, + 'nullCoalesce' => false, + 'fileWhitespace' => false, + 'unusedClassElements' => false, + 'readComposerPhpVersion' => false, + ], + 'fileExtensions' => ['php'], + 'checkAlwaysTrueCheckTypeFunctionCall' => false, + 'checkAlwaysTrueInstanceof' => false, + 'checkAlwaysTrueStrictComparison' => false, + 'checkClassCaseSensitivity' => true, + 'checkExplicitMixed' => false, + 'checkFunctionArgumentTypes' => true, + 'checkFunctionNameCase' => false, + 'checkGenericClassInNonGenericObjectType' => true, + 'checkInternalClassCaseSensitivity' => false, + 'checkMissingIterableValueType' => true, + 'checkMissingVarTagTypehint' => true, + 'checkArgumentsPassedByReference' => true, + 'checkMaybeUndefinedVariables' => true, + 'checkNullables' => true, + 'checkThisOnly' => false, + 'checkUnionTypes' => true, + 'checkExplicitMixedMissingReturn' => false, + 'checkPhpDocMissingReturn' => true, + 'checkPhpDocMethodSignatures' => true, + 'checkExtraArguments' => true, + 'checkMissingClosureNativeReturnTypehintRule' => false, + 'checkMissingTypehints' => true, + 'checkTooWideReturnTypesInProtectedAndPublicMethods' => false, + 'checkUninitializedProperties' => false, + 'inferPrivatePropertyTypeFromConstructor' => false, + 'reportMaybes' => true, + 'reportMaybesInMethodSignatures' => false, + 'reportStaticMethodSignatures' => false, + 'mixinExcludeClasses' => [], + 'scanFiles' => [], + 'scanDirectories' => [], + 'parallel' => [ + 'jobSize' => 20, + 'processTimeout' => 60.0, + 'maximumNumberOfProcesses' => 32, + 'minimumNumberOfJobsPerProcess' => 2, + 'buffer' => 134217728, + ], + 'phpVersion' => null, + 'polluteScopeWithLoopInitialAssignments' => true, + 'polluteScopeWithAlwaysIterableForeach' => true, + 'polluteCatchScopeWithTryAssignments' => false, + 'propertyAlwaysWrittenTags' => [], + 'propertyAlwaysReadTags' => [], + 'additionalConstructors' => ['PHPUnit\Framework\TestCase::setUp'], + 'treatPhpDocTypesAsCertain' => true, + 'tipsOfTheDay' => true, + 'reportMagicMethods' => true, + 'reportMagicProperties' => true, + 'ignoreErrors' => [], + 'internalErrorsCountLimit' => 50, + 'cache' => ['nodesByFileCountMax' => 1024, 'nodesByStringCountMax' => 1024], + 'reportUnmatchedIgnoredErrors' => true, + 'scopeClass' => 'PHPStan\Analyser\MutatingScope', + 'typeAliases' => [], + 'universalObjectCratesClasses' => ['stdClass'], + 'stubFiles' => [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', + ], + 'earlyTerminatingMethodCalls' => ['PHPUnit\Framework\Assert' => ['fail', 'markTestIncomplete', 'markTestSkipped']], + 'earlyTerminatingFunctionCalls' => [], + 'memoryLimitFile' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/.memory_limit', + 'tempResultCachePath' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCaches', + 'staticReflectionClassNamePatterns' => ['#^PhpParser\\\#', '#^PHPStan\\\#', '#^Hoa\\\#'], + 'dynamicConstantNames' => [ + 'ICONV_IMPL', + 'LIBXML_VERSION', + 'LIBXML_DOTTED_VERSION', + 'PHP_VERSION', + 'PHP_MAJOR_VERSION', + 'PHP_MINOR_VERSION', + 'PHP_RELEASE_VERSION', + 'PHP_VERSION_ID', + 'PHP_EXTRA_VERSION', + 'PHP_ZTS', + 'PHP_DEBUG', + 'PHP_MAXPATHLEN', + 'PHP_OS', + 'PHP_OS_FAMILY', + 'PHP_SAPI', + 'PHP_EOL', + 'PHP_INT_MAX', + 'PHP_INT_MIN', + 'PHP_INT_SIZE', + 'PHP_FLOAT_DIG', + 'PHP_FLOAT_EPSILON', + 'PHP_FLOAT_MIN', + 'PHP_FLOAT_MAX', + 'DEFAULT_INCLUDE_PATH', + 'PEAR_INSTALL_DIR', + 'PEAR_EXTENSION_DIR', + 'PHP_EXTENSION_DIR', + 'PHP_PREFIX', + 'PHP_BINDIR', + 'PHP_BINARY', + 'PHP_MANDIR', + 'PHP_LIBDIR', + 'PHP_DATADIR', + 'PHP_SYSCONFDIR', + 'PHP_LOCALSTATEDIR', + 'PHP_CONFIG_FILE_PATH', + 'PHP_CONFIG_FILE_SCAN_DIR', + 'PHP_SHLIB_SUFFIX', + 'PHP_FD_SETSIZE', + ], + 'customRulesetUsed' => false, + 'missingClosureNativeReturnCheckObjectTypehint' => false, + 'tmpDir' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data', + 'debugMode' => true, + 'productionMode' => false, + 'tempDir' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data', + 'rootDir' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan', + 'currentWorkingDirectory' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + 'cliArgumentsVariablesRegistered' => true, + 'additionalConfigFiles' => [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.levelmax.neon', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', + ], + 'analysedPaths' => ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], + 'composerAutoloaderProjectPaths' => [ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + ], + 'analysedPathsFromConfig' => [], + 'allCustomConfigFiles' => [ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon', + ], + 'usedLevel' => 'max', + 'cliAutoloadFile' => null, + 'fixerTmpDir' => '/tmp/phpstan-fixer', + 'singleReflectionFile' => null, + '__parametersSchema' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ + 'bootstrap' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string|null', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'bootstrapFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'excludes_analyse' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'autoload_directories' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'autoload_files' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'level' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\AnyOf', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00set" => [ + \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00castTo" => null, + ]), + 'paths' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'featureToggles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ + 'bleedingEdge' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'disableRuntimeReflectionProvider' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'closureUsesThis' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'randomIntParameters' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'nullCoalesce' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'fileWhitespace' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'unusedClassElements' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'readComposerPhpVersion' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', + ]), + 'fileExtensions' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkAlwaysTrueCheckTypeFunctionCall' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkAlwaysTrueInstanceof' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkAlwaysTrueStrictComparison' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkClassCaseSensitivity' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkExplicitMixed' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkFunctionArgumentTypes' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkFunctionNameCase' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkGenericClassInNonGenericObjectType' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkInternalClassCaseSensitivity' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkMissingIterableValueType' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkMissingVarTagTypehint' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkArgumentsPassedByReference' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkMaybeUndefinedVariables' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkNullables' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkThisOnly' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkUnionTypes' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkExplicitMixedMissingReturn' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkPhpDocMissingReturn' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkPhpDocMethodSignatures' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkExtraArguments' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkMissingClosureNativeReturnTypehintRule' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkMissingTypehints' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkTooWideReturnTypesInProtectedAndPublicMethods' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkUninitializedProperties' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'inferPrivatePropertyTypeFromConstructor' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'tipsOfTheDay' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'reportMaybes' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'reportMaybesInMethodSignatures' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'reportStaticMethodSignatures' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'parallel' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ + 'jobSize' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'processTimeout' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'float', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'maximumNumberOfProcesses' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'minimumNumberOfJobsPerProcess' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'buffer' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', + ]), + 'phpVersion' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\AnyOf', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00set" => [ + \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [70100.0, 80000.0], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00castTo" => null, + ]), + 'polluteScopeWithLoopInitialAssignments' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'polluteScopeWithAlwaysIterableForeach' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'polluteCatchScopeWithTryAssignments' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'propertyAlwaysWrittenTags' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'propertyAlwaysReadTags' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'additionalConstructors' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'treatPhpDocTypesAsCertain' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'reportMagicMethods' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'reportMagicProperties' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'ignoreErrors' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\AnyOf', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00set" => [ + \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ + 'message' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ + null, + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'path' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ + null, + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', + ]), + \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ + 'message' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ + null, + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'count' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ + null, + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'path' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ + null, + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', + ]), + \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ + 'message' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ + null, + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'paths' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ + null, + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ + null, + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', + ]), + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'internalErrorsCountLimit' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'cache' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ + 'nodesByFileCountMax' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'nodesByStringCountMax' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', + ]), + 'reportUnmatchedIgnoredErrors' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'scopeClass' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'typeAliases' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'array', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'universalObjectCratesClasses' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'stubFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'earlyTerminatingMethodCalls' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'array', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'earlyTerminatingFunctionCalls' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'memoryLimitFile' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'tempResultCachePath' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'staticReflectionClassNamePatterns' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'dynamicConstantNames' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'customRulesetUsed' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'rootDir' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'tmpDir' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'currentWorkingDirectory' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'cliArgumentsVariablesRegistered' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'mixinExcludeClasses' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'scanFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'scanDirectories' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'fixerTmpDir' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'debugMode' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'productionMode' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'tempDir' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'additionalConfigFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'allCustomConfigFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'analysedPaths' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'composerAutoloaderProjectPaths' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'analysedPathsFromConfig' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'usedLevel' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'cliAutoloadFile' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string|null', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'singleReflectionFile' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string|null', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'missingClosureNativeReturnCheckObjectTypehint' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + '__parametersSchema' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => '_HumbugBox96739a27ace4\Nette\Schema\Schema', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', + ]), + ]; + } + + + public function createService01(): PhpParser\BuilderFactory + { + return new PhpParser\BuilderFactory; + } + + + public function createService02(): PHPStan\Parser\LexerFactory + { + return new PHPStan\Parser\LexerFactory($this->getService('07')); + } + + + public function createService03(): PhpParser\NodeVisitor\NameResolver + { + return new PhpParser\NodeVisitor\NameResolver; + } + + + public function createService04(): PhpParser\NodeVisitor\NodeConnectingVisitor + { + return new PhpParser\NodeVisitor\NodeConnectingVisitor; + } + + + public function createService05(): PhpParser\PrettyPrinter\Standard + { + return new PhpParser\PrettyPrinter\Standard; + } + + + public function createService06(): PHPStan\Broker\AnonymousClassNameHelper + { + return new PHPStan\Broker\AnonymousClassNameHelper($this->getService('046'), $this->getService('simpleRelativePathHelper')); + } + + + public function createService07(): PHPStan\Php\PhpVersion + { + return $this->getService('08')->create(); + } + + + public function createService08(): PHPStan\Php\PhpVersionFactory + { + return $this->getService('09')->create(); + } + + + public function createService09(): PHPStan\Php\PhpVersionFactoryFactory + { + return new PHPStan\Php\PhpVersionFactoryFactory( + null, + false, + [ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + ] + ); + } + + + public function createService010(): PHPStan\PhpDocParser\Lexer\Lexer + { + return new PHPStan\PhpDocParser\Lexer\Lexer; + } + + + public function createService011(): PHPStan\PhpDocParser\Parser\TypeParser + { + return new PHPStan\PhpDocParser\Parser\TypeParser($this->getService('012')); + } + + + public function createService012(): PHPStan\PhpDocParser\Parser\ConstExprParser + { + return new PHPStan\PhpDocParser\Parser\ConstExprParser; + } + + + public function createService013(): PHPStan\PhpDocParser\Parser\PhpDocParser + { + return new PHPStan\PhpDocParser\Parser\PhpDocParser($this->getService('011'), $this->getService('012')); + } + + + public function createService014(): PHPStan\PhpDoc\PhpDocInheritanceResolver + { + return new PHPStan\PhpDoc\PhpDocInheritanceResolver($this->getService('0100')); + } + + + public function createService015(): PHPStan\PhpDoc\PhpDocNodeResolver + { + return new PHPStan\PhpDoc\PhpDocNodeResolver($this->getService('019'), $this->getService('017')); + } + + + public function createService016(): PHPStan\PhpDoc\PhpDocStringResolver + { + return new PHPStan\PhpDoc\PhpDocStringResolver($this->getService('010'), $this->getService('013')); + } + + + public function createService017(): PHPStan\PhpDoc\ConstExprNodeResolver + { + return new PHPStan\PhpDoc\ConstExprNodeResolver; + } + + + public function createService018(): PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension + { + return new PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension( + $this->getService('021'), + $this->getService('reflectionProvider'), + [] + ); + } + + + public function createService019(): PHPStan\PhpDoc\TypeNodeResolver + { + return new PHPStan\PhpDoc\TypeNodeResolver($this->getService('020'), $this->getService('040')); + } + + + public function createService020(): PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider + { + return new PHPStan\PhpDoc\LazyTypeNodeResolverExtensionRegistryProvider($this->getService('040')); + } + + + public function createService021(): PHPStan\PhpDoc\TypeStringResolver + { + return new PHPStan\PhpDoc\TypeStringResolver($this->getService('010'), $this->getService('011'), $this->getService('019')); + } + + + public function createService022(): PHPStan\PhpDoc\StubValidator + { + return new PHPStan\PhpDoc\StubValidator( + [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', + ], + $this->getService('042') + ); + } + + + public function createService023(): PHPStan\Analyser\Analyser + { + return new PHPStan\Analyser\Analyser($this->getService('024'), $this->getService('registry'), $this->getService('027'), 50); + } + + + public function createService024(): PHPStan\Analyser\FileAnalyser + { + return new PHPStan\Analyser\FileAnalyser( + $this->getService('026'), + $this->getService('027'), + $this->getService('053'), + $this->getService('036'), + true + ); + } + + + public function createService025(): PHPStan\Analyser\IgnoredErrorHelper + { + return new PHPStan\Analyser\IgnoredErrorHelper($this->getService('034'), $this->getService('046'), [], true); + } + + + public function createService026(): PHPStan\Analyser\LazyScopeFactory + { + return new PHPStan\Analyser\LazyScopeFactory('PHPStan\Analyser\MutatingScope', $this->getService('040')); + } + + + public function createService027(): PHPStan\Analyser\NodeScopeResolver + { + return new PHPStan\Analyser\NodeScopeResolver( + $this->getService('reflectionProvider'), + $this->getService('nodeScopeResolverClassReflector'), + $this->getService('043'), + $this->getService('053'), + $this->getService('0100'), + $this->getService('07'), + $this->getService('014'), + $this->getService('046'), + $this->getService('typeSpecifier'), + true, + false, + true, + ['PHPUnit\Framework\Assert' => ['fail', 'markTestIncomplete', 'markTestSkipped']], + [] + ); + } + + + public function createService028(): PHPStan\Analyser\ResultCache\ResultCacheManagerFactory + { + return new class ($this) implements PHPStan\Analyser\ResultCache\ResultCacheManagerFactory { + private $container; + + + public function __construct(Container_0680f21d46 $container) + { + $this->container = $container; + } + + + public function create(array $fileReplacements): PHPStan\Analyser\ResultCache\ResultCacheManager + { + return new PHPStan\Analyser\ResultCache\ResultCacheManager( + $this->container->getService('037'), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCache.php', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCaches', + [ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon', + ], + ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], + [ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + ], + [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', + ], + 'max', + null, + $fileReplacements + ); + } + }; + } + + + public function createService029(): PHPStan\Analyser\ResultCache\ResultCacheClearer + { + return new PHPStan\Analyser\ResultCache\ResultCacheClearer( + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCache.php', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCaches' + ); + } + + + public function createService030(): PHPStan\Cache\Cache + { + return new PHPStan\Cache\Cache($this->getService('cacheStorage')); + } + + + public function createService031(): PHPStan\Command\AnalyseApplication + { + return new PHPStan\Command\AnalyseApplication( + $this->getService('032'), + $this->getService('022'), + $this->getService('028'), + $this->getService('025'), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/.memory_limit', + 50 + ); + } + + + public function createService032(): PHPStan\Command\AnalyserRunner + { + return new PHPStan\Command\AnalyserRunner( + $this->getService('052'), + $this->getService('023'), + $this->getService('051'), + $this->getService('056') + ); + } + + + public function createService033(): PHPStan\Command\FixerApplication + { + return new PHPStan\Command\FixerApplication( + $this->getService('049'), + $this->getService('028'), + $this->getService('029'), + $this->getService('025'), + $this->getService('056'), + $this->getService('052'), + ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + '/tmp/phpstan-fixer', + 32 + ); + } + + + public function createService034(): PHPStan\Command\IgnoredRegexValidator + { + return new PHPStan\Command\IgnoredRegexValidator($this->getService('regexParser'), $this->getService('021')); + } + + + public function createService035(): PHPStan\Dependency\DependencyDumper + { + return new PHPStan\Dependency\DependencyDumper( + $this->getService('036'), + $this->getService('027'), + $this->getService('053'), + $this->getService('026'), + $this->getService('048') + ); + } + + + public function createService036(): PHPStan\Dependency\DependencyResolver + { + return new PHPStan\Dependency\DependencyResolver( + $this->getService('046'), + $this->getService('reflectionProvider'), + $this->getService('038') + ); + } + + + public function createService037(): PHPStan\Dependency\ExportedNodeFetcher + { + return new PHPStan\Dependency\ExportedNodeFetcher($this->getService('053'), $this->getService('039')); + } + + + public function createService038(): PHPStan\Dependency\ExportedNodeResolver + { + return new PHPStan\Dependency\ExportedNodeResolver($this->getService('0100'), $this->getService('05')); + } + + + public function createService039(): PHPStan\Dependency\ExportedNodeVisitor + { + return new PHPStan\Dependency\ExportedNodeVisitor($this->getService('038')); + } + + + public function createService040(): PHPStan\DependencyInjection\Container + { + return new PHPStan\DependencyInjection\MemoizingContainer($this->getService('041')); + } + + + public function createService041(): PHPStan\DependencyInjection\Nette\NetteContainer + { + return new PHPStan\DependencyInjection\Nette\NetteContainer($this); + } + + + public function createService042(): PHPStan\DependencyInjection\DerivativeContainerFactory + { + return new PHPStan\DependencyInjection\DerivativeContainerFactory( + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data', + [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.levelmax.neon', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', + ], + ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], + [ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + ], + [], + [ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon', + ], + 'max' + ); + } + + + public function createService043(): PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider + { + return new PHPStan\DependencyInjection\Reflection\LazyClassReflectionExtensionRegistryProvider($this->getService('040')); + } + + + public function createService044(): PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider + { + return new PHPStan\DependencyInjection\Type\LazyDynamicReturnTypeExtensionRegistryProvider($this->getService('040')); + } + + + public function createService045(): PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider + { + return new PHPStan\DependencyInjection\Type\LazyOperatorTypeSpecifyingExtensionRegistryProvider($this->getService('040')); + } + + + public function createService046(): PHPStan\File\FileHelper + { + return new PHPStan\File\FileHelper('/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check'); + } + + + public function createService047(): PHPStan\File\FileExcluder + { + return new PHPStan\File\FileExcluder( + $this->getService('046'), + [], + [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', + ] + ); + } + + + public function createService048(): PHPStan\File\FileFinder + { + return new PHPStan\File\FileFinder($this->getService('047'), $this->getService('046'), ['php']); + } + + + public function createService049(): PHPStan\File\FileMonitor + { + return new PHPStan\File\FileMonitor($this->getService('048')); + } + + + public function createService050(): PHPStan\NodeVisitor\StatementOrderVisitor + { + return new PHPStan\NodeVisitor\StatementOrderVisitor; + } + + + public function createService051(): PHPStan\Parallel\ParallelAnalyser + { + return new PHPStan\Parallel\ParallelAnalyser(50, 60.0, 134217728); + } + + + public function createService052(): PHPStan\Parallel\Scheduler + { + return new PHPStan\Parallel\Scheduler(20, 32, 2); + } + + + public function createService053(): PHPStan\Parser\CachedParser + { + return new PHPStan\Parser\CachedParser($this->getService('pathRoutingParser'), 1024); + } + + + public function createService054(): PHPStan\Parser\FunctionCallStatementFinder + { + return new PHPStan\Parser\FunctionCallStatementFinder; + } + + + public function createService055(): PHPStan\Parser\NodeChildrenVisitor + { + return new PHPStan\Parser\NodeChildrenVisitor; + } + + + public function createService056(): PHPStan\Process\CpuCoreCounter + { + return new PHPStan\Process\CpuCoreCounter; + } + + + public function createService057(): PHPStan\Reflection\FunctionReflectionFactory + { + return new class ($this) implements PHPStan\Reflection\FunctionReflectionFactory { + private $container; + + + public function __construct(Container_0680f21d46 $container) + { + $this->container = $container; + } + + + public function create( + ReflectionFunction $reflection, + PHPStan\Type\Generic\TemplateTypeMap $templateTypeMap, + array $phpDocParameterTypes, + ?PHPStan\Type\Type $phpDocReturnType, + ?PHPStan\Type\Type $phpDocThrowType, + ?string $deprecatedDescription, + bool $isDeprecated, + bool $isInternal, + bool $isFinal, + $filename + ): PHPStan\Reflection\Php\PhpFunctionReflection { + return new PHPStan\Reflection\Php\PhpFunctionReflection( + $reflection, + $this->container->getService('053'), + $this->container->getService('054'), + $this->container->getService('030'), + $templateTypeMap, + $phpDocParameterTypes, + $phpDocReturnType, + $phpDocThrowType, + $deprecatedDescription, + $isDeprecated, + $isInternal, + $isFinal, + $filename + ); + } + }; + } + + + public function createService058(): PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension + { + return new PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension; + } + + + public function createService059(): PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension + { + return new PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension; + } + + + public function createService060(): PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor; + } + + + public function createService061(): PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher( + $this->getService('060'), + $this->getService('053') + ); + } + + + public function createService062(): PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator($this->getService('061')); + } + + + public function createService063(): PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker( + $this->getService('065'), + $this->getService('068'), + $this->getService('066') + ); + } + + + public function createService064(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory + { + return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory { + private $container; + + + public function __construct(Container_0680f21d46 $container) + { + $this->container = $container; + } + + + public function create(string $directory): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocator + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocator( + $this->container->getService('061'), + $this->container->getService('048'), + $directory + ); + } + }; + } + + + public function createService065(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository($this->getService('064')); + } + + + public function createService066(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory + { + return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory { + private $container; + + + public function __construct(Container_0680f21d46 $container) + { + $this->container = $container; + } + + + public function create(_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\Composer\Psr\PsrAutoloaderMapping $mapping): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator($mapping, $this->container->getService('068')); + } + }; + } + + + public function createService067(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory + { + return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory { + private $container; + + + public function __construct(Container_0680f21d46 $container) + { + $this->container = $container; + } + + + public function create(string $fileName): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator( + $this->container->getService('061'), + $fileName + ); + } + }; + } + + + public function createService068(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository($this->getService('067')); + } + + + public function createService069(): PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension + { + return new PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension([]); + } + + + public function createService070(): PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension + { + return new PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension([]); + } + + + public function createService071(): PHPStan\Reflection\Php\PhpClassReflectionExtension + { + return new PHPStan\Reflection\Php\PhpClassReflectionExtension( + $this->getService('026'), + $this->getService('027'), + $this->getService('072'), + $this->getService('014'), + $this->getService('058'), + $this->getService('059'), + $this->getService('080'), + $this->getService('053'), + $this->getService('stubPhpDocProvider'), + $this->getService('reflectionProvider'), + false, + ['stdClass'] + ); + } + + + public function createService072(): PHPStan\Reflection\Php\PhpMethodReflectionFactory + { + return new class ($this) implements PHPStan\Reflection\Php\PhpMethodReflectionFactory { + private $container; + + + public function __construct(Container_0680f21d46 $container) + { + $this->container = $container; + } + + + public function create( + PHPStan\Reflection\ClassReflection $declaringClass, + ?PHPStan\Reflection\ClassReflection $declaringTrait, + PHPStan\Reflection\Php\BuiltinMethodReflection $reflection, + PHPStan\Type\Generic\TemplateTypeMap $templateTypeMap, + array $phpDocParameterTypes, + ?PHPStan\Type\Type $phpDocReturnType, + ?PHPStan\Type\Type $phpDocThrowType, + ?string $deprecatedDescription, + bool $isDeprecated, + bool $isInternal, + bool $isFinal, + ?string $stubPhpDocString + ): PHPStan\Reflection\Php\PhpMethodReflection { + return new PHPStan\Reflection\Php\PhpMethodReflection( + $declaringClass, + $declaringTrait, + $reflection, + $this->container->getService('reflectionProvider'), + $this->container->getService('053'), + $this->container->getService('054'), + $this->container->getService('030'), + $templateTypeMap, + $phpDocParameterTypes, + $phpDocReturnType, + $phpDocThrowType, + $deprecatedDescription, + $isDeprecated, + $isInternal, + $isFinal, + $stubPhpDocString + ); + } + }; + } + + + public function createService073(): PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension + { + return new PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension(['stdClass']); + } + + + public function createService074(): PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider + { + return new PHPStan\Reflection\ReflectionProvider\LazyReflectionProviderProvider($this->getService('040')); + } + + + public function createService075(): PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider + { + return new PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider($this->getService('080')); + } + + + public function createService076(): PHPStan\Reflection\SignatureMap\SignatureMapParser + { + return new PHPStan\Reflection\SignatureMap\SignatureMapParser($this->getService('021')); + } + + + public function createService077(): PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider + { + return new PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider($this->getService('076'), $this->getService('07')); + } + + + public function createService078(): PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider + { + return new PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider( + $this->getService('077'), + $this->getService('061'), + $this->getService('0100') + ); + } + + + public function createService079(): PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory + { + return new PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory( + $this->getService('07'), + $this->getService('077'), + $this->getService('078') + ); + } + + + public function createService080(): PHPStan\Reflection\SignatureMap\SignatureMapProvider + { + return $this->getService('079')->create(); + } + + + public function createService081(): PHPStan\Rules\ClassCaseSensitivityCheck + { + return new PHPStan\Rules\ClassCaseSensitivityCheck($this->getService('reflectionProvider')); + } + + + public function createService082(): PHPStan\Rules\Comparison\ConstantConditionRuleHelper + { + return new PHPStan\Rules\Comparison\ConstantConditionRuleHelper($this->getService('083'), true); + } + + + public function createService083(): PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper + { + return new PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper( + $this->getService('reflectionProvider'), + $this->getService('typeSpecifier'), + ['stdClass'], + true + ); + } + + + public function createService084(): PHPStan\Rules\FunctionCallParametersCheck + { + return new PHPStan\Rules\FunctionCallParametersCheck($this->getService('098'), true, true, true, true); + } + + + public function createService085(): PHPStan\Rules\FunctionDefinitionCheck + { + return new PHPStan\Rules\FunctionDefinitionCheck( + $this->getService('reflectionProvider'), + $this->getService('081'), + $this->getService('07'), + true, + false + ); + } + + + public function createService086(): PHPStan\Rules\FunctionReturnTypeCheck + { + return new PHPStan\Rules\FunctionReturnTypeCheck($this->getService('098')); + } + + + public function createService087(): PHPStan\Rules\Generics\GenericAncestorsCheck + { + return new PHPStan\Rules\Generics\GenericAncestorsCheck( + $this->getService('reflectionProvider'), + $this->getService('088'), + $this->getService('090'), + true + ); + } + + + public function createService088(): PHPStan\Rules\Generics\GenericObjectTypeCheck + { + return new PHPStan\Rules\Generics\GenericObjectTypeCheck; + } + + + public function createService089(): PHPStan\Rules\Generics\TemplateTypeCheck + { + return new PHPStan\Rules\Generics\TemplateTypeCheck($this->getService('reflectionProvider'), $this->getService('081'), [], true); + } + + + public function createService090(): PHPStan\Rules\Generics\VarianceCheck + { + return new PHPStan\Rules\Generics\VarianceCheck; + } + + + public function createService091(): PHPStan\Rules\IssetCheck + { + return new PHPStan\Rules\IssetCheck($this->getService('095'), $this->getService('096')); + } + + + public function createService092(): PHPStan\Rules\Methods\MethodSignatureRule + { + return new PHPStan\Rules\Methods\MethodSignatureRule(false, false); + } + + + public function createService093(): PHPStan\Rules\MissingTypehintCheck + { + return new PHPStan\Rules\MissingTypehintCheck($this->getService('reflectionProvider'), true, true); + } + + + public function createService094(): PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider + { + return new PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider($this->getService('040')); + } + + + public function createService095(): PHPStan\Rules\Properties\PropertyDescriptor + { + return new PHPStan\Rules\Properties\PropertyDescriptor; + } + + + public function createService096(): PHPStan\Rules\Properties\PropertyReflectionFinder + { + return new PHPStan\Rules\Properties\PropertyReflectionFinder; + } + + + public function createService097(): PHPStan\Rules\RegistryFactory + { + return new PHPStan\Rules\RegistryFactory($this->getService('040')); + } + + + public function createService098(): PHPStan\Rules\RuleLevelHelper + { + return new PHPStan\Rules\RuleLevelHelper($this->getService('reflectionProvider'), true, false, true); + } + + + public function createService099(): PHPStan\Rules\UnusedFunctionParametersCheck + { + return new PHPStan\Rules\UnusedFunctionParametersCheck; + } + + + public function createService0100(): PHPStan\Type\FileTypeMapper + { + return new PHPStan\Type\FileTypeMapper( + $this->getService('074'), + $this->getService('053'), + $this->getService('016'), + $this->getService('015'), + $this->getService('030'), + $this->getService('06') + ); + } + + + public function createService0101(): PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension; + } + + + public function createService0102(): PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension; + } + + + public function createService0103(): PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension; + } + + + public function createService0104(): PHPStan\Type\Php\ArrayFilterFunctionReturnTypeReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayFilterFunctionReturnTypeReturnTypeExtension; + } + + + public function createService0105(): PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension; + } + + + public function createService0106(): PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension; + } + + + public function createService0107(): PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension; + } + + + public function createService0108(): PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension; + } + + + public function createService0109(): PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension; + } + + + public function createService0110(): PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension; + } + + + public function createService0111(): PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension; + } + + + public function createService0112(): PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension; + } + + + public function createService0113(): PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension; + } + + + public function createService0114(): PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension; + } + + + public function createService0115(): PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension; + } + + + public function createService0116(): PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension; + } + + + public function createService0117(): PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension; + } + + + public function createService0118(): PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension; + } + + + public function createService0119(): PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension + { + return new PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension; + } + + + public function createService0120(): PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension; + } + + + public function createService0121(): PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension; + } + + + public function createService0122(): PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension; + } + + + public function createService0123(): PHPStan\Type\Php\CountFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\CountFunctionReturnTypeExtension; + } + + + public function createService0124(): PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension; + } + + + public function createService0125(): PHPStan\Type\Php\CurlInitReturnTypeExtension + { + return new PHPStan\Type\Php\CurlInitReturnTypeExtension; + } + + + public function createService0126(): PHPStan\Type\Php\DateFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\DateFunctionReturnTypeExtension; + } + + + public function createService0127(): PHPStan\Type\Php\DsMapDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\DsMapDynamicReturnTypeExtension; + } + + + public function createService0128(): PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension; + } + + + public function createService0129(): PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension($this->getService('07')); + } + + + public function createService0130(): PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension($this->getService('reflectionProvider')); + } + + + public function createService0131(): PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension; + } + + + public function createService0132(): PHPStan\Type\Php\GetClassDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\GetClassDynamicReturnTypeExtension; + } + + + public function createService0133(): PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension($this->getService('reflectionProvider')); + } + + + public function createService0134(): PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension; + } + + + public function createService0135(): PHPStan\Type\Php\HashHmacFunctionsReturnTypeExtension + { + return new PHPStan\Type\Php\HashHmacFunctionsReturnTypeExtension; + } + + + public function createService0136(): PHPStan\Type\Php\HashFunctionsReturnTypeExtension + { + return new PHPStan\Type\Php\HashFunctionsReturnTypeExtension; + } + + + public function createService0137(): PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension + { + return new PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension; + } + + + public function createService0138(): PHPStan\Type\Php\StatDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\StatDynamicReturnTypeExtension; + } + + + public function createService0139(): PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension + { + return new PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension; + } + + + public function createService0140(): PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension + { + return new PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension($this->getService('096')); + } + + + public function createService0141(): PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension; + } + + + public function createService0142(): PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension; + } + + + public function createService0143(): PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension($this->getService('reflectionProvider')); + } + + + public function createService0144(): PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension; + } + + + public function createService0145(): PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension; + } + + + public function createService0146(): PHPStan\Type\Php\VarExportFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\VarExportFunctionDynamicReturnTypeExtension; + } + + + public function createService0147(): PHPStan\Type\Php\MbFunctionsReturnTypeExtension + { + return new PHPStan\Type\Php\MbFunctionsReturnTypeExtension; + } + + + public function createService0148(): PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension; + } + + + public function createService0149(): PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension; + } + + + public function createService0150(): PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension; + } + + + public function createService0151(): PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension; + } + + + public function createService0152(): PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension; + } + + + public function createService0153(): PHPStan\Type\Php\PowFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\PowFunctionReturnTypeExtension; + } + + + public function createService0154(): PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension; + } + + + public function createService0155(): PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension; + } + + + public function createService0156(): PHPStan\Type\Php\RangeFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\RangeFunctionReturnTypeExtension; + } + + + public function createService0157(): PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension; + } + + + public function createService0158(): PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension; + } + + + public function createService0159(): PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension + { + return new PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension; + } + + + public function createService0160(): PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension + { + return new PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension; + } + + + public function createService0161(): PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension; + } + + + public function createService0162(): PHPStan\Type\Php\IsIntFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsIntFunctionTypeSpecifyingExtension; + } + + + public function createService0163(): PHPStan\Type\Php\IsFloatFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsFloatFunctionTypeSpecifyingExtension; + } + + + public function createService0164(): PHPStan\Type\Php\IsNullFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsNullFunctionTypeSpecifyingExtension; + } + + + public function createService0165(): PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension; + } + + + public function createService0166(): PHPStan\Type\Php\IsBoolFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsBoolFunctionTypeSpecifyingExtension; + } + + + public function createService0167(): PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension($this->getService('0139')); + } + + + public function createService0168(): PHPStan\Type\Php\IsCountableFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsCountableFunctionTypeSpecifyingExtension; + } + + + public function createService0169(): PHPStan\Type\Php\IsResourceFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsResourceFunctionTypeSpecifyingExtension; + } + + + public function createService0170(): PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension; + } + + + public function createService0171(): PHPStan\Type\Php\IsStringFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsStringFunctionTypeSpecifyingExtension; + } + + + public function createService0172(): PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension; + } + + + public function createService0173(): PHPStan\Type\Php\IsObjectFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsObjectFunctionTypeSpecifyingExtension; + } + + + public function createService0174(): PHPStan\Type\Php\IsNumericFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsNumericFunctionTypeSpecifyingExtension; + } + + + public function createService0175(): PHPStan\Type\Php\IsScalarFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsScalarFunctionTypeSpecifyingExtension; + } + + + public function createService0176(): PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension; + } + + + public function createService0177(): PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension($this->getService('reflectionProvider')); + } + + + public function createService0178(): PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension(true); + } + + + public function createService0179(): PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension + { + return new PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension; + } + + + public function createService0180(): PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension; + } + + + public function createService0181(): PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension; + } + + + public function createService0182(): PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension; + } + + + public function createService0183(): PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory + { + return new PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory( + $this->getService('phpParserDecorator'), + $this->getService('0185'), + $this->getService('0186'), + $this->getService('068'), + $this->getService('065'), + $this->getService('063'), + $this->getService('062'), + $this->getService('040'), + [], + [], + [], + [], + ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], + [ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + ], + [], + $this->parameters['singleReflectionFile'], + ['#^PhpParser\\\#', '#^PHPStan\\\#', '#^Hoa\\\#'] + ); + } + + + public function createService0184(): PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory + { + return new class ($this) implements PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory { + private $container; + + + public function __construct(Container_0680f21d46 $container) + { + $this->container = $container; + } + + + public function create( + _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector $functionReflector, + _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector $classReflector, + _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector $constantReflector + ): PHPStan\Reflection\BetterReflection\BetterReflectionProvider { + return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider( + $this->container->getService('074'), + $this->container->getService('043'), + $classReflector, + $this->container->getService('0100'), + $this->container->getService('07'), + $this->container->getService('075'), + $this->container->getService('stubPhpDocProvider'), + $this->container->getService('057'), + $this->container->getService('relativePathHelper'), + $this->container->getService('06'), + $this->container->getService('05'), + $this->container->getService('046'), + $functionReflector, + $constantReflector + ); + } + }; + } + + + public function createService0185(): _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber + { + return new _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber($this->getService('php8PhpParser')); + } + + + public function createService0186(): _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber + { + return new _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber; + } + + + public function createService0187(): PHPStan\Rules\Classes\ExistingClassInInstanceOfRule + { + return new PHPStan\Rules\Classes\ExistingClassInInstanceOfRule( + $this->getService('reflectionProvider'), + $this->getService('081'), + true + ); + } + + + public function createService0188(): PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule + { + return new PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule( + $this->getService('reflectionProvider'), + $this->getService('081'), + true + ); + } + + + public function createService0189(): PHPStan\Rules\Functions\CallToNonExistentFunctionRule + { + return new PHPStan\Rules\Functions\CallToNonExistentFunctionRule($this->getService('reflectionProvider'), false); + } + + + public function createService0190(): PHPStan\Rules\Functions\ClosureUsesThisRule + { + return new PHPStan\Rules\Functions\ClosureUsesThisRule; + } + + + public function createService0191(): PHPStan\Rules\Methods\CallMethodsRule + { + return new PHPStan\Rules\Methods\CallMethodsRule( + $this->getService('reflectionProvider'), + $this->getService('084'), + $this->getService('098'), + false, + true + ); + } + + + public function createService0192(): PHPStan\Rules\Methods\CallStaticMethodsRule + { + return new PHPStan\Rules\Methods\CallStaticMethodsRule( + $this->getService('reflectionProvider'), + $this->getService('084'), + $this->getService('098'), + $this->getService('081'), + false, + true + ); + } + + + public function createService0193(): PHPStan\Rules\Methods\OverridingMethodRule + { + return new PHPStan\Rules\Methods\OverridingMethodRule($this->getService('07'), $this->getService('092'), true); + } + + + public function createService0194(): PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule + { + return new PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule(false); + } + + + public function createService0195(): PHPStan\Rules\Missing\MissingReturnRule + { + return new PHPStan\Rules\Missing\MissingReturnRule(false, true); + } + + + public function createService0196(): PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule + { + return new PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule( + $this->getService('reflectionProvider'), + $this->getService('081'), + false + ); + } + + + public function createService0197(): PHPStan\Rules\Namespaces\ExistingNamesInUseRule + { + return new PHPStan\Rules\Namespaces\ExistingNamesInUseRule( + $this->getService('reflectionProvider'), + $this->getService('081'), + false + ); + } + + + public function createService0198(): PHPStan\Rules\Operators\InvalidIncDecOperationRule + { + return new PHPStan\Rules\Operators\InvalidIncDecOperationRule(false); + } + + + public function createService0199(): PHPStan\Rules\Properties\AccessPropertiesRule + { + return new PHPStan\Rules\Properties\AccessPropertiesRule( + $this->getService('reflectionProvider'), + $this->getService('098'), + true + ); + } + + + public function createService0200(): PHPStan\Rules\Properties\AccessStaticPropertiesRule + { + return new PHPStan\Rules\Properties\AccessStaticPropertiesRule( + $this->getService('reflectionProvider'), + $this->getService('098'), + $this->getService('081') + ); + } + + + public function createService0201(): PHPStan\Rules\Properties\ExistingClassesInPropertiesRule + { + return new PHPStan\Rules\Properties\ExistingClassesInPropertiesRule( + $this->getService('reflectionProvider'), + $this->getService('081'), + true, + false + ); + } + + + public function createService0202(): PHPStan\Rules\Properties\UninitializedPropertyRule + { + return new PHPStan\Rules\Properties\UninitializedPropertyRule($this->getService('094'), ['PHPUnit\Framework\TestCase::setUp']); + } + + + public function createService0203(): PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule + { + return new PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule( + $this->getService('098'), + $this->getService('095'), + $this->getService('096'), + false + ); + } + + + public function createService0204(): PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule + { + return new PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule( + $this->getService('095'), + $this->getService('096'), + $this->getService('098'), + false + ); + } + + + public function createService0205(): PHPStan\Rules\Variables\CompactVariablesRule + { + return new PHPStan\Rules\Variables\CompactVariablesRule(true); + } + + + public function createService0206(): PHPStan\Rules\Variables\DefinedVariableRule + { + return new PHPStan\Rules\Variables\DefinedVariableRule(true, true); + } + + + public function createService0207(): PHPStan\Rules\Regexp\RegularExpressionPatternRule + { + return new PHPStan\Rules\Regexp\RegularExpressionPatternRule; + } + + + public function createService0208(): PHPStan\Rules\Whitespace\FileWhitespaceRule + { + return new PHPStan\Rules\Whitespace\FileWhitespaceRule; + } + + + public function createService0209(): PHPStan\Rules\Variables\VariableCertaintyNullCoalesceRule + { + return new PHPStan\Rules\Variables\VariableCertaintyNullCoalesceRule; + } + + + public function createService0210(): PHPStan\Rules\Classes\MixinRule + { + return new PHPStan\Rules\Classes\MixinRule( + $this->getService('0100'), + $this->getService('reflectionProvider'), + $this->getService('081'), + $this->getService('088'), + $this->getService('093'), + true + ); + } + + + public function createService0211(): PHPStan\Rules\Functions\CallCallablesRule + { + return new PHPStan\Rules\Functions\CallCallablesRule($this->getService('084'), $this->getService('098'), true); + } + + + public function createService0212(): PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule + { + return new PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule( + $this->getService('0100'), + $this->getService('reflectionProvider'), + $this->getService('081'), + $this->getService('088'), + $this->getService('093'), + true, + true + ); + } + + + public function createService0213(): PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule + { + return new PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule($this->getService('096'), true); + } + + + public function createService0214(): PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule + { + return new PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule(true); + } + + + public function createService0215(): PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule + { + return new PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule(true); + } + + + public function createService0216(): PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule + { + return new PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule($this->getService('098'), true); + } + + + public function createService0217(): PHPStan\Rules\Functions\ReturnTypeRule + { + return new PHPStan\Rules\Functions\ReturnTypeRule( + $this->getService('086'), + $this->getService('betterReflectionFunctionReflector') + ); + } + + + public function createService0218(): PHPStan\Rules\Generators\YieldFromTypeRule + { + return new PHPStan\Rules\Generators\YieldFromTypeRule($this->getService('098'), true); + } + + + public function createService0219(): PHPStan\Rules\Generators\YieldInGeneratorRule + { + return new PHPStan\Rules\Generators\YieldInGeneratorRule(true); + } + + + public function createService0220(): PHPStan\Rules\Classes\ImpossibleInstanceOfRule + { + return new PHPStan\Rules\Classes\ImpossibleInstanceOfRule(false, true); + } + + + public function createService0221(): PHPStan\Rules\Comparison\BooleanAndConstantConditionRule + { + return new PHPStan\Rules\Comparison\BooleanAndConstantConditionRule($this->getService('082'), true); + } + + + public function createService0222(): PHPStan\Rules\Comparison\BooleanOrConstantConditionRule + { + return new PHPStan\Rules\Comparison\BooleanOrConstantConditionRule($this->getService('082'), true); + } + + + public function createService0223(): PHPStan\Rules\Comparison\BooleanNotConstantConditionRule + { + return new PHPStan\Rules\Comparison\BooleanNotConstantConditionRule($this->getService('082'), true); + } + + + public function createService0224(): PHPStan\Rules\DeadCode\UnusedPrivateConstantRule + { + return new PHPStan\Rules\DeadCode\UnusedPrivateConstantRule; + } + + + public function createService0225(): PHPStan\Rules\DeadCode\UnusedPrivateMethodRule + { + return new PHPStan\Rules\DeadCode\UnusedPrivateMethodRule; + } + + + public function createService0226(): PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule + { + return new PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule($this->getService('094'), [], [], false); + } + + + public function createService0227(): PHPStan\Rules\Comparison\ElseIfConstantConditionRule + { + return new PHPStan\Rules\Comparison\ElseIfConstantConditionRule($this->getService('082'), true); + } + + + public function createService0228(): PHPStan\Rules\Comparison\IfConstantConditionRule + { + return new PHPStan\Rules\Comparison\IfConstantConditionRule($this->getService('082'), true); + } + + + public function createService0229(): PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule + { + return new PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule($this->getService('083'), false, true); + } + + + public function createService0230(): PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule + { + return new PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule($this->getService('083'), false, true); + } + + + public function createService0231(): PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule + { + return new PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule($this->getService('083'), false, true); + } + + + public function createService0232(): PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule + { + return new PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule(false); + } + + + public function createService0233(): PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule + { + return new PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule($this->getService('082'), true); + } + + + public function createService0234(): PHPStan\Rules\Comparison\UnreachableIfBranchesRule + { + return new PHPStan\Rules\Comparison\UnreachableIfBranchesRule($this->getService('082'), true); + } + + + public function createService0235(): PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule + { + return new PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule($this->getService('082'), true); + } + + + public function createService0236(): PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule + { + return new PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule(false); + } + + + public function createService0237(): PHPStan\Rules\Variables\IssetRule + { + return new PHPStan\Rules\Variables\IssetRule($this->getService('091')); + } + + + public function createService0238(): PHPStan\Rules\Variables\NullCoalesceRule + { + return new PHPStan\Rules\Variables\NullCoalesceRule($this->getService('091')); + } + + + public function createService0239(): PHPStan\Rules\Functions\RandomIntParametersRule + { + return new PHPStan\Rules\Functions\RandomIntParametersRule($this->getService('reflectionProvider'), true); + } + + + public function createService0240(): PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension + { + return new PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension; + } + + + public function createService0241(): PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension; + } + + + public function createService0242(): PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension + { + return new PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension; + } + + + public function createService0243(): PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension + { + return new PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension; + } + + + public function createService0244(): PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension + { + return new PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension; + } + + + public function createService0245(): PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension + { + return new PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension; + } + + + public function createService0246(): PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension + { + return new PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension; + } + + + public function createService0247(): PHPStan\Rules\Deprecations\DeprecatedClassHelper + { + return new PHPStan\Rules\Deprecations\DeprecatedClassHelper($this->getService('broker')); + } + + + public function createServiceBetterReflectionClassReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector + { + return new PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector($this->getService('betterReflectionSourceLocator')); + } + + + public function createServiceBetterReflectionConstantReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingConstantReflector + { + return new PHPStan\Reflection\BetterReflection\Reflector\MemoizingConstantReflector( + $this->getService('betterReflectionSourceLocator'), + $this->getService('betterReflectionClassReflector') + ); + } + + + public function createServiceBetterReflectionFunctionReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingFunctionReflector + { + return new PHPStan\Reflection\BetterReflection\Reflector\MemoizingFunctionReflector( + $this->getService('betterReflectionSourceLocator'), + $this->getService('betterReflectionClassReflector') + ); + } + + + public function createServiceBetterReflectionProvider(): PHPStan\Reflection\BetterReflection\BetterReflectionProvider + { + return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider( + $this->getService('074'), + $this->getService('043'), + $this->getService('betterReflectionClassReflector'), + $this->getService('0100'), + $this->getService('07'), + $this->getService('075'), + $this->getService('stubPhpDocProvider'), + $this->getService('057'), + $this->getService('relativePathHelper'), + $this->getService('06'), + $this->getService('05'), + $this->getService('046'), + $this->getService('betterReflectionFunctionReflector'), + $this->getService('betterReflectionConstantReflector') + ); + } + + + public function createServiceBetterReflectionSourceLocator(): _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\SourceLocator + { + return $this->getService('0183')->create(); + } + + + public function createServiceBroker(): PHPStan\Broker\Broker + { + return $this->getService('brokerFactory')->create(); + } + + + public function createServiceBrokerFactory(): PHPStan\Broker\BrokerFactory + { + return new PHPStan\Broker\BrokerFactory($this->getService('040')); + } + + + public function createServiceCacheStorage(): PHPStan\Cache\FileCacheStorage + { + return new PHPStan\Cache\FileCacheStorage('/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/cache/PHPStan'); + } + + + public function createServiceContainer(): Container_0680f21d46 + { + return $this; + } + + + public function createServiceCurrentPhpVersionLexer(): PhpParser\Lexer + { + return $this->getService('02')->create(); + } + + + public function createServiceCurrentPhpVersionPhpParser(): PhpParser\Parser\Php7 + { + return new PhpParser\Parser\Php7($this->getService('currentPhpVersionLexer')); + } + + + public function createServiceCurrentPhpVersionRichParser(): PHPStan\Parser\RichParser + { + return new PHPStan\Parser\RichParser( + $this->getService('currentPhpVersionPhpParser'), + $this->getService('currentPhpVersionLexer'), + $this->getService('03'), + $this->getService('04'), + $this->getService('050'), + $this->getService('055'), + $this->getService('07') + ); + } + + + public function createServiceCurrentPhpVersionSimpleParser(): PHPStan\Parser\SimpleParser + { + return new PHPStan\Parser\SimpleParser($this->getService('currentPhpVersionPhpParser'), $this->getService('03')); + } + + + public function createServiceErrorFormatter__baselineNeon(): PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter($this->getService('simpleRelativePathHelper')); + } + + + public function createServiceErrorFormatter__checkstyle(): PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter($this->getService('simpleRelativePathHelper')); + } + + + public function createServiceErrorFormatter__github(): PHPStan\Command\ErrorFormatter\GithubErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\GithubErrorFormatter( + $this->getService('simpleRelativePathHelper'), + $this->getService('errorFormatter.table') + ); + } + + + public function createServiceErrorFormatter__gitlab(): PHPStan\Command\ErrorFormatter\GitlabErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\GitlabErrorFormatter($this->getService('simpleRelativePathHelper')); + } + + + public function createServiceErrorFormatter__json(): PHPStan\Command\ErrorFormatter\JsonErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\JsonErrorFormatter(false); + } + + + public function createServiceErrorFormatter__junit(): PHPStan\Command\ErrorFormatter\JunitErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\JunitErrorFormatter($this->getService('simpleRelativePathHelper')); + } + + + public function createServiceErrorFormatter__prettyJson(): PHPStan\Command\ErrorFormatter\JsonErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\JsonErrorFormatter(true); + } + + + public function createServiceErrorFormatter__raw(): PHPStan\Command\ErrorFormatter\RawErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\RawErrorFormatter; + } + + + public function createServiceErrorFormatter__table(): PHPStan\Command\ErrorFormatter\TableErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\TableErrorFormatter($this->getService('relativePathHelper'), true); + } + + + public function createServiceErrorFormatter__teamcity(): PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter($this->getService('simpleRelativePathHelper')); + } + + + public function createServiceInnerRuntimeReflectionProvider(): PHPStan\Reflection\Runtime\RuntimeReflectionProvider + { + return new PHPStan\Reflection\Runtime\RuntimeReflectionProvider( + $this->getService('074'), + $this->getService('043'), + $this->getService('057'), + $this->getService('0100'), + $this->getService('07'), + $this->getService('075'), + $this->getService('stubPhpDocProvider'), + $this->getService('0185') + ); + } + + + public function createServiceNodeScopeResolverClassReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector + { + return $this->getService('betterReflectionClassReflector'); + } + + + public function createServiceParentDirectoryRelativePathHelper(): PHPStan\File\ParentDirectoryRelativePathHelper + { + return new PHPStan\File\ParentDirectoryRelativePathHelper('/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check'); + } + + + public function createServicePathRoutingParser(): PHPStan\Parser\PathRoutingParser + { + return new PHPStan\Parser\PathRoutingParser( + $this->getService('046'), + $this->getService('currentPhpVersionRichParser'), + $this->getService('currentPhpVersionSimpleParser'), + $this->getService('php8Parser') + ); + } + + + public function createServicePhp8Lexer(): PhpParser\Lexer\Emulative + { + return new PhpParser\Lexer\Emulative; + } + + + public function createServicePhp8Parser(): PHPStan\Parser\SimpleParser + { + return new PHPStan\Parser\SimpleParser($this->getService('php8PhpParser'), $this->getService('03')); + } + + + public function createServicePhp8PhpParser(): PhpParser\Parser\Php7 + { + return new PhpParser\Parser\Php7($this->getService('php8Lexer')); + } + + + public function createServicePhpParserDecorator(): PHPStan\Parser\PhpParserDecorator + { + return new PHPStan\Parser\PhpParserDecorator($this->getService('053')); + } + + + public function createServiceReflectionProvider(): PHPStan\Reflection\ReflectionProvider + { + return $this->getService('reflectionProviderFactory')->create(); + } + + + public function createServiceReflectionProviderFactory(): PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory + { + return new PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory( + $this->getService('runtimeReflectionProvider'), + $this->getService('betterReflectionProvider'), + false + ); + } + + + public function createServiceRegexGrammarStream(): Hoa\File\Read + { + return new Hoa\File\Read('hoa://Library/Regex/Grammar.pp'); + } + + + public function createServiceRegexParser(): Hoa\Compiler\Llk\Parser + { + return Hoa\Compiler\Llk\Llk::load($this->getService('regexGrammarStream')); + } + + + public function createServiceRegistry(): PHPStan\Rules\Registry + { + return $this->getService('097')->create(); + } + + + public function createServiceRelativePathHelper(): PHPStan\File\RelativePathHelper + { + return new PHPStan\File\FuzzyRelativePathHelper( + $this->getService('parentDirectoryRelativePathHelper'), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'] + ); + } + + + public function createServiceRules__0(): PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule + { + return new PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule($this->getService('05')); + } + + + public function createServiceRules__1(): PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule + { + return new PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule; + } + + + public function createServiceRules__10(): PHPStan\Rules\Exceptions\ThrowExpressionRule + { + return new PHPStan\Rules\Exceptions\ThrowExpressionRule($this->getService('07')); + } + + + public function createServiceRules__11(): PHPStan\Rules\Functions\CallToFunctionParametersRule + { + return new PHPStan\Rules\Functions\CallToFunctionParametersRule( + $this->getService('reflectionProvider'), + $this->getService('084') + ); + } + + + public function createServiceRules__12(): PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule + { + return new PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule($this->getService('085')); + } + + + public function createServiceRules__13(): PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule + { + return new PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule($this->getService('085')); + } + + + public function createServiceRules__14(): PHPStan\Rules\Functions\ExistingClassesInTypehintsRule + { + return new PHPStan\Rules\Functions\ExistingClassesInTypehintsRule($this->getService('085')); + } + + + public function createServiceRules__15(): PHPStan\Rules\Functions\InnerFunctionRule + { + return new PHPStan\Rules\Functions\InnerFunctionRule; + } + + + public function createServiceRules__16(): PHPStan\Rules\Functions\PrintfParametersRule + { + return new PHPStan\Rules\Functions\PrintfParametersRule; + } + + + public function createServiceRules__17(): PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule + { + return new PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule; + } + + + public function createServiceRules__18(): PHPStan\Rules\Methods\ExistingClassesInTypehintsRule + { + return new PHPStan\Rules\Methods\ExistingClassesInTypehintsRule($this->getService('085')); + } + + + public function createServiceRules__19(): PHPStan\Rules\Methods\MissingMethodImplementationRule + { + return new PHPStan\Rules\Methods\MissingMethodImplementationRule; + } + + + public function createServiceRules__2(): PHPStan\Rules\Classes\ClassConstantRule + { + return new PHPStan\Rules\Classes\ClassConstantRule( + $this->getService('reflectionProvider'), + $this->getService('098'), + $this->getService('081'), + $this->getService('07') + ); + } + + + public function createServiceRules__20(): PHPStan\Rules\Properties\AccessPropertiesInAssignRule + { + return new PHPStan\Rules\Properties\AccessPropertiesInAssignRule($this->getService('0199')); + } + + + public function createServiceRules__21(): PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule + { + return new PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule($this->getService('0200')); + } + + + public function createServiceRules__22(): PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule + { + return new PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule($this->getService('07')); + } + + + public function createServiceRules__23(): PHPStan\Rules\Variables\UnsetRule + { + return new PHPStan\Rules\Variables\UnsetRule; + } + + + public function createServiceRules__24(): PHPStan\Rules\Classes\UnusedConstructorParametersRule + { + return new PHPStan\Rules\Classes\UnusedConstructorParametersRule($this->getService('099')); + } + + + public function createServiceRules__25(): PHPStan\Rules\Constants\ConstantRule + { + return new PHPStan\Rules\Constants\ConstantRule; + } + + + public function createServiceRules__26(): PHPStan\Rules\Functions\UnusedClosureUsesRule + { + return new PHPStan\Rules\Functions\UnusedClosureUsesRule($this->getService('099')); + } + + + public function createServiceRules__27(): PHPStan\Rules\Variables\VariableCertaintyInIssetRule + { + return new PHPStan\Rules\Variables\VariableCertaintyInIssetRule; + } + + + public function createServiceRules__28(): PHPStan\Rules\Cast\EchoRule + { + return new PHPStan\Rules\Cast\EchoRule($this->getService('098')); + } + + + public function createServiceRules__29(): PHPStan\Rules\Cast\InvalidCastRule + { + return new PHPStan\Rules\Cast\InvalidCastRule($this->getService('reflectionProvider'), $this->getService('098')); + } + + + public function createServiceRules__3(): PHPStan\Rules\Classes\DuplicateDeclarationRule + { + return new PHPStan\Rules\Classes\DuplicateDeclarationRule; + } + + + public function createServiceRules__30(): PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule + { + return new PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule($this->getService('05'), $this->getService('098')); + } + + + public function createServiceRules__31(): PHPStan\Rules\Cast\PrintRule + { + return new PHPStan\Rules\Cast\PrintRule($this->getService('098')); + } + + + public function createServiceRules__32(): PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule + { + return new PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule; + } + + + public function createServiceRules__33(): PHPStan\Rules\Generics\ClassAncestorsRule + { + return new PHPStan\Rules\Generics\ClassAncestorsRule($this->getService('0100'), $this->getService('087')); + } + + + public function createServiceRules__34(): PHPStan\Rules\Generics\ClassTemplateTypeRule + { + return new PHPStan\Rules\Generics\ClassTemplateTypeRule($this->getService('089')); + } + + + public function createServiceRules__35(): PHPStan\Rules\Generics\FunctionTemplateTypeRule + { + return new PHPStan\Rules\Generics\FunctionTemplateTypeRule($this->getService('0100'), $this->getService('089')); + } + + + public function createServiceRules__36(): PHPStan\Rules\Generics\FunctionSignatureVarianceRule + { + return new PHPStan\Rules\Generics\FunctionSignatureVarianceRule($this->getService('090')); + } + + + public function createServiceRules__37(): PHPStan\Rules\Generics\InterfaceAncestorsRule + { + return new PHPStan\Rules\Generics\InterfaceAncestorsRule($this->getService('0100'), $this->getService('087')); + } + + + public function createServiceRules__38(): PHPStan\Rules\Generics\InterfaceTemplateTypeRule + { + return new PHPStan\Rules\Generics\InterfaceTemplateTypeRule($this->getService('0100'), $this->getService('089')); + } + + + public function createServiceRules__39(): PHPStan\Rules\Generics\MethodTemplateTypeRule + { + return new PHPStan\Rules\Generics\MethodTemplateTypeRule($this->getService('0100'), $this->getService('089')); + } + + + public function createServiceRules__4(): PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule + { + return new PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule( + $this->getService('081'), + $this->getService('reflectionProvider') + ); + } + + + public function createServiceRules__40(): PHPStan\Rules\Generics\MethodSignatureVarianceRule + { + return new PHPStan\Rules\Generics\MethodSignatureVarianceRule($this->getService('090')); + } + + + public function createServiceRules__41(): PHPStan\Rules\Generics\TraitTemplateTypeRule + { + return new PHPStan\Rules\Generics\TraitTemplateTypeRule($this->getService('0100'), $this->getService('089')); + } + + + public function createServiceRules__42(): PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule + { + return new PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule; + } + + + public function createServiceRules__43(): PHPStan\Rules\Operators\InvalidBinaryOperationRule + { + return new PHPStan\Rules\Operators\InvalidBinaryOperationRule($this->getService('05'), $this->getService('098')); + } + + + public function createServiceRules__44(): PHPStan\Rules\Operators\InvalidUnaryOperationRule + { + return new PHPStan\Rules\Operators\InvalidUnaryOperationRule; + } + + + public function createServiceRules__45(): PHPStan\Rules\Operators\InvalidComparisonOperationRule + { + return new PHPStan\Rules\Operators\InvalidComparisonOperationRule($this->getService('098')); + } + + + public function createServiceRules__46(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule + { + return new PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule($this->getService('0100'), $this->getService('088')); + } + + + public function createServiceRules__47(): PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule + { + return new PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule($this->getService('088')); + } + + + public function createServiceRules__48(): PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule + { + return new PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule($this->getService('010'), $this->getService('013')); + } + + + public function createServiceRules__49(): PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule + { + return new PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule($this->getService('010'), $this->getService('013')); + } + + + public function createServiceRules__5(): PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule + { + return new PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule( + $this->getService('081'), + $this->getService('reflectionProvider') + ); + } + + + public function createServiceRules__50(): PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule + { + return new PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule($this->getService('0100')); + } + + + public function createServiceRules__51(): PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule + { + return new PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule($this->getService('0100')); + } + + + public function createServiceRules__52(): PHPStan\Rules\Arrays\AppendedArrayItemTypeRule + { + return new PHPStan\Rules\Arrays\AppendedArrayItemTypeRule($this->getService('096'), $this->getService('098')); + } + + + public function createServiceRules__53(): PHPStan\Rules\Arrays\IterableInForeachRule + { + return new PHPStan\Rules\Arrays\IterableInForeachRule($this->getService('098')); + } + + + public function createServiceRules__54(): PHPStan\Rules\Arrays\OffsetAccessAssignmentRule + { + return new PHPStan\Rules\Arrays\OffsetAccessAssignmentRule($this->getService('098')); + } + + + public function createServiceRules__55(): PHPStan\Rules\Arrays\OffsetAccessAssignOpRule + { + return new PHPStan\Rules\Arrays\OffsetAccessAssignOpRule($this->getService('098')); + } + + + public function createServiceRules__56(): PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule + { + return new PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule($this->getService('098')); + } + + + public function createServiceRules__57(): PHPStan\Rules\Arrays\UnpackIterableInArrayRule + { + return new PHPStan\Rules\Arrays\UnpackIterableInArrayRule($this->getService('098')); + } + + + public function createServiceRules__58(): PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule + { + return new PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule($this->getService('086')); + } + + + public function createServiceRules__59(): PHPStan\Rules\Functions\ClosureReturnTypeRule + { + return new PHPStan\Rules\Functions\ClosureReturnTypeRule($this->getService('086')); + } + + + public function createServiceRules__6(): PHPStan\Rules\Classes\ExistingClassInClassExtendsRule + { + return new PHPStan\Rules\Classes\ExistingClassInClassExtendsRule( + $this->getService('081'), + $this->getService('reflectionProvider') + ); + } + + + public function createServiceRules__60(): PHPStan\Rules\Generators\YieldTypeRule + { + return new PHPStan\Rules\Generators\YieldTypeRule($this->getService('098')); + } + + + public function createServiceRules__61(): PHPStan\Rules\Methods\ReturnTypeRule + { + return new PHPStan\Rules\Methods\ReturnTypeRule($this->getService('086')); + } + + + public function createServiceRules__62(): PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule + { + return new PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule($this->getService('098')); + } + + + public function createServiceRules__63(): PHPStan\Rules\Properties\TypesAssignedToPropertiesRule + { + return new PHPStan\Rules\Properties\TypesAssignedToPropertiesRule( + $this->getService('098'), + $this->getService('095'), + $this->getService('096') + ); + } + + + public function createServiceRules__64(): PHPStan\Rules\Variables\ThrowTypeRule + { + return new PHPStan\Rules\Variables\ThrowTypeRule($this->getService('098')); + } + + + public function createServiceRules__65(): PHPStan\Rules\Variables\VariableCloningRule + { + return new PHPStan\Rules\Variables\VariableCloningRule($this->getService('098')); + } + + + public function createServiceRules__66(): PHPStan\Rules\Arrays\DeadForeachRule + { + return new PHPStan\Rules\Arrays\DeadForeachRule; + } + + + public function createServiceRules__67(): PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule + { + return new PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule; + } + + + public function createServiceRules__68(): PHPStan\Rules\DeadCode\NoopRule + { + return new PHPStan\Rules\DeadCode\NoopRule($this->getService('05')); + } + + + public function createServiceRules__69(): PHPStan\Rules\DeadCode\UnreachableStatementRule + { + return new PHPStan\Rules\DeadCode\UnreachableStatementRule; + } + + + public function createServiceRules__7(): PHPStan\Rules\Classes\ExistingClassInTraitUseRule + { + return new PHPStan\Rules\Classes\ExistingClassInTraitUseRule($this->getService('081'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__70(): PHPStan\Rules\Exceptions\DeadCatchRule + { + return new PHPStan\Rules\Exceptions\DeadCatchRule; + } + + + public function createServiceRules__71(): PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule + { + return new PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule($this->getService('reflectionProvider')); + } + + + public function createServiceRules__72(): PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule + { + return new PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule($this->getService('098')); + } + + + public function createServiceRules__73(): PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule + { + return new PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule( + $this->getService('098'), + $this->getService('reflectionProvider') + ); + } + + + public function createServiceRules__74(): PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule + { + return new PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule; + } + + + public function createServiceRules__75(): PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule + { + return new PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule; + } + + + public function createServiceRules__76(): PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule + { + return new PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule; + } + + + public function createServiceRules__77(): PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule + { + return new PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule($this->getService('093')); + } + + + public function createServiceRules__78(): PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule + { + return new PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule($this->getService('093')); + } + + + public function createServiceRules__79(): PHPStan\Rules\Methods\MissingMethodParameterTypehintRule + { + return new PHPStan\Rules\Methods\MissingMethodParameterTypehintRule($this->getService('093')); + } + + + public function createServiceRules__8(): PHPStan\Rules\Classes\InstantiationRule + { + return new PHPStan\Rules\Classes\InstantiationRule( + $this->getService('reflectionProvider'), + $this->getService('084'), + $this->getService('081') + ); + } + + + public function createServiceRules__80(): PHPStan\Rules\Methods\MissingMethodReturnTypehintRule + { + return new PHPStan\Rules\Methods\MissingMethodReturnTypehintRule($this->getService('093')); + } + + + public function createServiceRules__81(): PHPStan\Rules\Properties\MissingPropertyTypehintRule + { + return new PHPStan\Rules\Properties\MissingPropertyTypehintRule($this->getService('093')); + } + + + public function createServiceRules__82(): PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule + { + return new PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule($this->getService('broker')); + } + + + public function createServiceRules__83(): PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule + { + return new PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule($this->getService('broker'), $this->getService('098')); + } + + + public function createServiceRules__84(): PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule + { + return new PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule($this->getService('broker')); + } + + + public function createServiceRules__85(): PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule + { + return new PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule($this->getService('broker')); + } + + + public function createServiceRules__86(): PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule + { + return new PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule($this->getService('broker'), $this->getService('098')); + } + + + public function createServiceRules__87(): PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule + { + return new PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule( + $this->getService('broker'), + $this->getService('098') + ); + } + + + public function createServiceRules__88(): PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule + { + return new PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule($this->getService('reflectionProvider')); + } + + + public function createServiceRules__89(): PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule + { + return new PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule($this->getService('broker')); + } + + + public function createServiceRules__9(): PHPStan\Rules\Classes\NewStaticRule + { + return new PHPStan\Rules\Classes\NewStaticRule; + } + + + public function createServiceRules__90(): PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule + { + return new PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule($this->getService('broker')); + } + + + public function createServiceRules__91(): PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule + { + return new PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule($this->getService('broker')); + } + + + public function createServiceRules__92(): PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule + { + return new PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule($this->getService('broker'), $this->getService('098')); + } + + + public function createServiceRules__93(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule + { + return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule($this->getService('0247')); + } + + + public function createServiceRules__94(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule + { + return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule($this->getService('0247')); + } + + + public function createServiceRules__95(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule + { + return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule($this->getService('0247')); + } + + + public function createServiceRules__96(): PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule + { + return new PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule; + } + + + public function createServiceRules__97(): PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule + { + return new PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule($this->getService('broker')); + } + + + public function createServiceRuntimeReflectionProvider(): PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider + { + return new PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider( + $this->getService('innerRuntimeReflectionProvider'), + $this->getService('0185'), + ['#^PhpParser\\\#', '#^PHPStan\\\#', '#^Hoa\\\#'], + null + ); + } + + + public function createServiceSimpleRelativePathHelper(): PHPStan\File\RelativePathHelper + { + return new PHPStan\File\SimpleRelativePathHelper('/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check'); + } + + + public function createServiceStubPhpDocProvider(): PHPStan\PhpDoc\StubPhpDocProvider + { + return new PHPStan\PhpDoc\StubPhpDocProvider( + $this->getService('053'), + $this->getService('0100'), + [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', + ] + ); + } + + + public function createServiceTypeSpecifier(): PHPStan\Analyser\TypeSpecifier + { + return $this->getService('typeSpecifierFactory')->create(); + } + + + public function createServiceTypeSpecifierFactory(): PHPStan\Analyser\TypeSpecifierFactory + { + return new PHPStan\Analyser\TypeSpecifierFactory($this->getService('040')); + } + + + public function initialize() + { + } +} diff --git a/data/cache/nette.configurator/Container_0680f21d46.php.lock b/data/cache/nette.configurator/Container_0680f21d46.php.lock new file mode 100644 index 0000000..e69de29 diff --git a/data/cache/nette.configurator/Container_0680f21d46.php.meta b/data/cache/nette.configurator/Container_0680f21d46.php.meta new file mode 100644 index 0000000..7da9cbc --- /dev/null +++ b/data/cache/nette.configurator/Container_0680f21d46.php.meta @@ -0,0 +1 @@ +a:6:{i:0;i:1;i:1;a:21:{s:134:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.neon";i:1603454189;s:143:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.levelmax.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level8.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level7.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level6.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level5.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level4.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level3.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level2.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level1.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level0.neon";i:1603454189;s:97:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist";i:1603543935;s:125:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon";i:1596634130;s:131:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon";i:1595343150;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Extensions/ServicesExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Extensions/ParametersExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Extensions/PhpExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Extensions/ExtensionsExtension.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/RulesExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/ConditionalTagsExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/ParametersSchemaExtension.php";i:1603454189;}i:2;a:444:{s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/DuplicateKeysInLiteralArraysRule.php";i:1603454189;s:136:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Rule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/OffsetAccessWithoutDimForReadingRule.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ClassConstantRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/DuplicateDeclarationRule.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassesInClassImplementsRule.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassesInInterfaceExtendsRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassInClassExtendsRule.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassInTraitUseRule.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/InstantiationRule.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/NewStaticRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Exceptions/ThrowExpressionRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/CallToFunctionParametersRule.php";i:1603454189;s:185:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ExistingClassesInArrowFunctionTypehintsRule.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ExistingClassesInClosureTypehintsRule.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ExistingClassesInTypehintsRule.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/InnerFunctionRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/PrintfParametersRule.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/AbstractMethodInNonAbstractClassRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/ExistingClassesInTypehintsRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/MissingMethodImplementationRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/AccessPropertiesInAssignRule.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/AccessStaticPropertiesInAssignRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Ternary/RequireParenthesesForNestedTernaryRule.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/UnsetRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/UnusedConstructorParametersRule.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Constants/ConstantRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/UnusedClosureUsesRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/VariableCertaintyInIssetRule.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Cast/EchoRule.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Cast/InvalidCastRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Cast/InvalidPartOfEncapsedStringRule.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Cast/PrintRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/IncompatibleDefaultParameterTypeRule.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/ClassAncestorsRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/ClassTemplateTypeRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/FunctionTemplateTypeRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/FunctionSignatureVarianceRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/InterfaceAncestorsRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/InterfaceTemplateTypeRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/MethodTemplateTypeRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/MethodSignatureVarianceRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/TraitTemplateTypeRule.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/IncompatibleDefaultParameterTypeRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Operators/InvalidBinaryOperationRule.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Operators/InvalidUnaryOperationRule.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Operators/InvalidComparisonOperationRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/IncompatiblePhpDocTypeRule.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/IncompatiblePropertyPhpDocTypeRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/InvalidPhpDocTagValueRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/InvalidPHPStanDocTagRule.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/InvalidThrowsPhpDocValueRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/WrongVariableNameInVarTagRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/AppendedArrayItemTypeRule.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/IterableInForeachRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/OffsetAccessAssignmentRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/OffsetAccessAssignOpRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/OffsetAccessValueAssignmentRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/UnpackIterableInArrayRule.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ArrowFunctionReturnTypeRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ClosureReturnTypeRule.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generators/YieldTypeRule.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/ReturnTypeRule.php";i:1603454189;s:184:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/DefaultValueTypesAssignedToPropertiesRule.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/TypesAssignedToPropertiesRule.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/ThrowTypeRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/VariableCloningRule.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/DeadForeachRule.php";i:1603454189;s:189:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/NumberComparisonOperatorsConstantConditionRule.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/NoopRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/UnreachableStatementRule.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Exceptions/DeadCatchRule.php";i:1603454189;s:185:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/CallToFunctionStamentWithoutSideEffectsRule.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/CallToMethodStamentWithoutSideEffectsRule.php";i:1603454189;s:187:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/CallToStaticMethodStamentWithoutSideEffectsRule.php";i:1603454189;s:187:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideArrowFunctionReturnTypehintRule.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideClosureReturnTypehintRule.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideFunctionReturnTypehintRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/MissingFunctionParameterTypehintRule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/MissingFunctionReturnTypehintRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/MissingMethodParameterTypehintRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/MissingMethodReturnTypehintRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/MissingPropertyTypehintRule.php";i:1603454189;s:176:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/AccessDeprecatedPropertyRule.php";i:1595343150;s:182:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/AccessDeprecatedStaticPropertyRule.php";i:1595343150;s:176:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedFunctionRule.php";i:1595343150;s:174:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedMethodRule.php";i:1595343150;s:180:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedStaticMethodRule.php";i:1595343150;s:187:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/FetchingClassConstOfDeprecatedClassRule.php";i:1595343150;s:175:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/FetchingDeprecatedConstRule.php";i:1595343150;s:187:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/ImplementationOfDeprecatedInterfaceRule.php";i:1595343150;s:180:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InheritanceOfDeprecatedClassRule.php";i:1595343150;s:184:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InheritanceOfDeprecatedInterfaceRule.php";i:1595343150;s:182:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InstantiationOfDeprecatedClassRule.php";i:1595343150;s:192:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInClassMethodSignatureRule.php";i:1595343150;s:188:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInClosureSignatureRule.php";i:1595343150;s:189:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInFunctionSignatureRule.php";i:1595343150;s:173:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/UsageOfDeprecatedCastRule.php";i:1595343150;s:174:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/UsageOfDeprecatedTraitRule.php";i:1595343150;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/BuilderFactory.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/LexerFactory.php";i:1603454189;s:184:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor.php";i:1603454189;s:193:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NodeConnectingVisitor.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Broker/AnonymousClassNameHelper.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Php/PhpVersionFactoryFactory.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/phpstan/phpdoc-parser/src/Lexer/Lexer.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/phpstan/phpdoc-parser/src/Parser/TypeParser.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/phpstan/phpdoc-parser/src/Parser/ConstExprParser.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/phpstan/phpdoc-parser/src/Parser/PhpDocParser.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/PhpDocInheritanceResolver.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/PhpDocNodeResolver.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/PhpDocStringResolver.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/ConstExprNodeResolver.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeAlias/TypeAliasesTypeNodeResolverExtension.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeNodeResolverExtension.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeNodeResolver.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeStringResolver.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/StubValidator.php";i:1603454189;s:143:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/Analyser.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/FileAnalyser.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/IgnoredErrorHelper.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/LazyScopeFactory.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/ScopeFactory.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/NodeScopeResolver.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/ResultCache/ResultCacheClearer.php";i:1603454189;s:137:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Cache/Cache.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/AnalyseApplication.php";i:1603454189;s:148:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/AnalyserRunner.php";i:1603454189;s:150:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/FixerApplication.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/IgnoredRegexValidator.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/DependencyDumper.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/DependencyResolver.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/ExportedNodeFetcher.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/ExportedNodeResolver.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/ExportedNodeVisitor.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Nette/NetteContainer.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Container.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/DerivativeContainerFactory.php";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FileHelper.php";i:1603454189;s:143:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FileExcluder.php";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FileFinder.php";i:1603454189;s:142:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FileMonitor.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/NodeVisitor/StatementOrderVisitor.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parallel/ParallelAnalyser.php";i:1603454189;s:144:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parallel/Scheduler.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/CachedParser.php";i:1603454189;s:139:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/Parser.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/FunctionCallStatementFinder.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/NodeChildrenVisitor.php";i:1603454189;s:148:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Process/CpuCoreCounter.php";i:1603454189;s:191:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Annotations/AnnotationsMethodsClassReflectionExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/MethodsClassReflectionExtension.php";i:1603454189;s:194:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Annotations/AnnotationsPropertiesClassReflectionExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/PropertiesClassReflectionExtension.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/CachingVisitor.php";i:1603454189;s:184:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/FileNodesFetcher.php";i:1603454189;s:189:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/AutoloadSourceLocator.php";i:1603454189;s:196:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/Type/SourceLocator.php";i:1603454189;s:214:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/ComposerJsonAndInstalledJsonSourceLocatorMaker.php";i:1603454189;s:209:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocatorRepository.php";i:1603454189;s:210:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocatorRepository.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Mixin/MixinMethodsClassReflectionExtension.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Mixin/MixinPropertiesClassReflectionExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/PhpClassReflectionExtension.php";i:1603454189;s:186:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/UniversalObjectCratesClassReflectionExtension.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BrokerAwareExtension.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/NativeFunctionReflectionProvider.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/SignatureMapParser.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/FunctionSignatureMapProvider.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/SignatureMapProvider.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/Php8SignatureMapProvider.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/SignatureMapProviderFactory.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/ClassCaseSensitivityCheck.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ConstantConditionRuleHelper.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeHelper.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/FunctionCallParametersCheck.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/FunctionDefinitionCheck.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/FunctionReturnTypeCheck.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/GenericAncestorsCheck.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/GenericObjectTypeCheck.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/TemplateTypeCheck.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/VarianceCheck.php";i:1603454189;s:142:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/IssetCheck.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/MethodSignatureRule.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/MissingTypehintCheck.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/LazyReadWritePropertiesExtensionProvider.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/ReadWritePropertiesExtensionProvider.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/PropertyDescriptor.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/PropertyReflectionFinder.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/RegistryFactory.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/RuleLevelHelper.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/UnusedFunctionParametersCheck.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/FileTypeMapper.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArgumentBasedFunctionReturnTypeExtension.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/DynamicFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayFillFunctionReturnTypeExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayFillKeysFunctionReturnTypeExtension.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayFilterFunctionReturnTypeReturnTypeExtension.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeyDynamicReturnTypeExtension.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeyExistsFunctionTypeSpecifyingExtension.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/FunctionTypeSpecifyingExtension.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/TypeSpecifierAwareExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeyFirstDynamicReturnTypeExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeyLastDynamicReturnTypeExtension.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeysFunctionDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayMapFunctionReturnTypeExtension.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayMergeFunctionDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayPopFunctionReturnTypeExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayReduceFunctionReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayShiftFunctionReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArraySliceFunctionReturnTypeExtension.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArraySearchFunctionDynamicReturnTypeExtension.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayValuesFunctionDynamicReturnTypeExtension.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/Base64DecodeDynamicFunctionReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/BcMathStringOrNullReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ClosureBindDynamicReturnTypeExtension.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/DynamicStaticMethodReturnTypeExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ClosureBindToDynamicReturnTypeExtension.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/DynamicMethodReturnTypeExtension.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ClosureFromCallableDynamicReturnTypeExtension.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/CountFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/CountFunctionTypeSpecifyingExtension.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/CurlInitReturnTypeExtension.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DateFunctionReturnTypeExtension.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DsMapDynamicReturnTypeExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DioStatDynamicFunctionReturnTypeExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ExplodeFunctionDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/FilterVarDynamicReturnTypeExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/GetCalledClassDynamicReturnTypeExtension.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/GetClassDynamicReturnTypeExtension.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/GetParentClassDynamicFunctionReturnTypeExtension.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/GettimeofdayDynamicFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/HashHmacFunctionsReturnTypeExtension.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/HashFunctionsReturnTypeExtension.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/SimpleXMLElementClassPropertyReflectionExtension.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/StatDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MethodExistsTypeSpecifyingExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/PropertyExistsTypeSpecifyingExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MinMaxFunctionReturnTypeExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/PathinfoFunctionDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/PregSplitDynamicReturnTypeExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ReplaceFunctionsDynamicReturnTypeExtension.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayPointerFunctionsDynamicReturnTypeExtension.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/VarExportFunctionDynamicReturnTypeExtension.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MbFunctionsReturnTypeExtension.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MbConvertEncodingFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MicrotimeFunctionReturnTypeExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/HrtimeFunctionReturnTypeExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ParseUrlFunctionDynamicReturnTypeExtension.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/VersionCompareFunctionDynamicReturnTypeExtension.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/PowFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/StrtotimeFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/RandomIntFunctionReturnTypeExtension.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/RangeFunctionReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/AssertFunctionTypeSpecifyingExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ClassExistsFunctionTypeSpecifyingExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DefineConstantTypeSpecifyingExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DefinedConstantTypeSpecifyingExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/InArrayFunctionTypeSpecifyingExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsIntFunctionTypeSpecifyingExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsFloatFunctionTypeSpecifyingExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsNullFunctionTypeSpecifyingExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsArrayFunctionTypeSpecifyingExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsBoolFunctionTypeSpecifyingExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsCallableFunctionTypeSpecifyingExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsCountableFunctionTypeSpecifyingExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsResourceFunctionTypeSpecifyingExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsIterableFunctionTypeSpecifyingExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsStringFunctionTypeSpecifyingExtension.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsSubclassOfFunctionTypeSpecifyingExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsObjectFunctionTypeSpecifyingExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsNumericFunctionTypeSpecifyingExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsScalarFunctionTypeSpecifyingExtension.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsAFunctionTypeSpecifyingExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/JsonThrowOnErrorDynamicReturnTypeExtension.php";i:1603454189;s:184:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/TypeSpecifyingFunctionsDynamicReturnTypeExtension.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/SimpleXMLElementAsXMLMethodReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/StrSplitFunctionReturnTypeExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/SprintfFunctionDynamicReturnTypeExtension.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/StrWordCountFunctionDynamicReturnTypeExtension.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/TypeSpecifierFactory.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/ParentDirectoryRelativePathHelper.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/RelativePathHelper.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Broker/BrokerFactory.php";i:1603454189;s:148:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Cache/FileCacheStorage.php";i:1603454189;s:144:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Cache/CacheStorage.php";i:1603454189;s:143:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/RichParser.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/SimpleParser.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/PhpParserDecorator.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/Parser.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/Parser/Php7.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/ParserAbstract.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/StubPhpDocProvider.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider/ReflectionProviderFactory.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider.php";i:1603454189;s:187:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/Reflector/MemoizingClassReflector.php";i:1603454189;s:188:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/Reflector/ClassReflector.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/Reflector/Reflector.php";i:1603454189;s:190:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/Reflector/MemoizingFunctionReflector.php";i:1603454189;s:191:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/Reflector/FunctionReflector.php";i:1603454189;s:190:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/Reflector/MemoizingConstantReflector.php";i:1603454189;s:191:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/Reflector/ConstantReflector.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/BetterReflectionProvider.php";i:1603454189;s:142:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/file/Read.php";i:1603454189;s:142:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/file/File.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/file/Generic.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/Stream.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Stream.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/event/Listenable.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/event/Source.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Pathable.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Statable.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Touchable.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Bufferable.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Lockable.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Pointable.php";i:1603454189;s:150:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/In.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/event/Listens.php";i:1603454189;s:188:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider/ClassBlacklistReflectionProvider.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Runtime/RuntimeReflectionProvider.php";i:1603454189;s:190:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/BetterReflectionSourceLocatorFactory.php";i:1603454189;s:218:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/PhpStormStubsSourceStubber.php";i:1603454189;s:205:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/SourceStubber.php";i:1603454189;s:215:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/ReflectionSourceStubber.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/Lexer.php";i:1603454189;s:150:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/PathRoutingParser.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/RawErrorFormatter.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/ErrorFormatter.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/BaselineNeonErrorFormatter.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/TableErrorFormatter.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/CheckstyleErrorFormatter.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/JsonErrorFormatter.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/JunitErrorFormatter.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/GitlabErrorFormatter.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/GithubErrorFormatter.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/TeamcityErrorFormatter.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassInInstanceOfRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Exceptions/CaughtExceptionExistenceRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/CallToNonExistentFunctionRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ClosureUsesThisRule.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/CallMethodsRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/CallStaticMethodsRule.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/OverridingMethodRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Missing/MissingClosureNativeReturnTypehintRule.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Missing/MissingReturnRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Namespaces/ExistingNamesInGroupUseRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Namespaces/ExistingNamesInUseRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Operators/InvalidIncDecOperationRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/AccessPropertiesRule.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/AccessStaticPropertiesRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/ExistingClassesInPropertiesRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/UninitializedPropertyRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/WritingToReadOnlyPropertiesRule.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/ReadingWriteOnlyPropertiesRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/CompactVariablesRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/DefinedVariableRule.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Regexp/RegularExpressionPatternRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Whitespace/FileWhitespaceRule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/VariableCertaintyNullCoalesceRule.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/MixinRule.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/CallCallablesRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/InvalidPhpDocVarTagTypeRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/AppendedArrayKeyTypeRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/InvalidKeyInArrayDimFetchRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/InvalidKeyInArrayItemRule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/NonexistentOffsetInArrayDimFetchRule.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ReturnTypeRule.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generators/YieldFromTypeRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generators/YieldInGeneratorRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ImpossibleInstanceOfRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/BooleanAndConstantConditionRule.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/BooleanOrConstantConditionRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/BooleanNotConstantConditionRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/UnusedPrivateConstantRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/UnusedPrivateMethodRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/UnusedPrivatePropertyRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ElseIfConstantConditionRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/IfConstantConditionRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeFunctionCallRule.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeMethodCallRule.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeStaticMethodCallRule.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/StrictComparisonOfDifferentTypesRule.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/TernaryOperatorConstantConditionRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/UnreachableIfBranchesRule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/UnreachableTernaryElseBranchRule.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideMethodReturnTypehintRule.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/IssetRule.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/NullCoalesceRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/RandomIntParametersRule.php";i:1603454189;s:169:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/PhpDoc/PHPUnit/MockObjectTypeNodeResolverExtension.php";i:1596634130;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeNodeResolverAwareExtension.php";i:1603454189;s:176:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertFunctionTypeSpecifyingExtension.php";i:1596634130;s:174:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertMethodTypeSpecifyingExtension.php";i:1596634130;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/MethodTypeSpecifyingExtension.php";i:1603454189;s:180:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertStaticMethodTypeSpecifyingExtension.php";i:1596634130;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/StaticMethodTypeSpecifyingExtension.php";i:1603454189;s:174:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/InvocationMockerDynamicReturnTypeExtension.php";i:1596634130;s:169:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/MockBuilderDynamicReturnTypeExtension.php";i:1596634130;s:168:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/MockObjectDynamicReturnTypeExtension.php";i:1596634130;s:169:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/DeprecatedClassHelper.php";i:1595343150;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Container.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/utils/src/Utils/SmartObject.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Php/PhpVersionFactory.php";i:1603454189;s:140:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Php/PhpVersion.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/LazyTypeNodeResolverExtensionRegistryProvider.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeNodeResolverExtensionRegistryProvider.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/ResultCache/ResultCacheManager.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/ResultCache/ResultCacheManagerFactory.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/MemoizingContainer.php";i:1603454189;s:201:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Reflection/LazyClassReflectionExtensionRegistryProvider.php";i:1603454189;s:197:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Reflection/ClassReflectionExtensionRegistryProvider.php";i:1603454189;s:197:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Type/LazyDynamicReturnTypeExtensionRegistryProvider.php";i:1603454189;s:193:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Type/DynamicReturnTypeExtensionRegistryProvider.php";i:1603454189;s:202:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Type/LazyOperatorTypeSpecifyingExtensionRegistryProvider.php";i:1603454189;s:198:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Type/OperatorTypeSpecifyingExtensionRegistryProvider.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/PhpFunctionReflection.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/FunctionReflection.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionWithFilename.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/FunctionReflectionFactory.php";i:1603454189;s:199:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocator.php";i:1603454189;s:206:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocatorFactory.php";i:1603454189;s:197:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedPsrAutoloaderLocator.php";i:1603454189;s:204:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedPsrAutoloaderLocatorFactory.php";i:1603454189;s:200:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocator.php";i:1603454189;s:207:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocatorFactory.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/PhpMethodReflection.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/MethodReflection.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ClassMemberReflection.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/PhpMethodReflectionFactory.php";i:1603454189;s:186:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider/LazyReflectionProviderProvider.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider/ReflectionProviderProvider.php";i:1603454189;s:148:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/TypeSpecifier.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FuzzyRelativePathHelper.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/SimpleRelativePathHelper.php";i:1603454189;s:139:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Broker/Broker.php";i:1603454189;s:140:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Registry.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/compiler/Llk/Llk.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/compiler/Llk/Parser.php";i:1603454189;s:185:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/BetterReflectionProviderFactory.php";i:1603454189;}i:3;a:435:{i:0;s:53:"PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule";i:1;s:18:"PHPStan\Rules\Rule";i:2;s:57:"PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule";i:3;s:39:"PHPStan\Rules\Classes\ClassConstantRule";i:4;s:46:"PHPStan\Rules\Classes\DuplicateDeclarationRule";i:5;s:58:"PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule";i:6;s:59:"PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule";i:7;s:53:"PHPStan\Rules\Classes\ExistingClassInClassExtendsRule";i:8;s:49:"PHPStan\Rules\Classes\ExistingClassInTraitUseRule";i:9;s:39:"PHPStan\Rules\Classes\InstantiationRule";i:10;s:35:"PHPStan\Rules\Classes\NewStaticRule";i:11;s:44:"PHPStan\Rules\Exceptions\ThrowExpressionRule";i:12;s:52:"PHPStan\Rules\Functions\CallToFunctionParametersRule";i:13;s:67:"PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule";i:14;s:61:"PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule";i:15;s:54:"PHPStan\Rules\Functions\ExistingClassesInTypehintsRule";i:16;s:41:"PHPStan\Rules\Functions\InnerFunctionRule";i:17;s:44:"PHPStan\Rules\Functions\PrintfParametersRule";i:18;s:58:"PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule";i:19;s:52:"PHPStan\Rules\Methods\ExistingClassesInTypehintsRule";i:20;s:53:"PHPStan\Rules\Methods\MissingMethodImplementationRule";i:21;s:53:"PHPStan\Rules\Properties\AccessPropertiesInAssignRule";i:22;s:59:"PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule";i:23;s:60:"PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule";i:24;s:33:"PHPStan\Rules\Variables\UnsetRule";i:25;s:53:"PHPStan\Rules\Classes\UnusedConstructorParametersRule";i:26;s:36:"PHPStan\Rules\Constants\ConstantRule";i:27;s:45:"PHPStan\Rules\Functions\UnusedClosureUsesRule";i:28;s:52:"PHPStan\Rules\Variables\VariableCertaintyInIssetRule";i:29;s:27:"PHPStan\Rules\Cast\EchoRule";i:30;s:34:"PHPStan\Rules\Cast\InvalidCastRule";i:31;s:50:"PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule";i:32;s:28:"PHPStan\Rules\Cast\PrintRule";i:33;s:60:"PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule";i:34;s:41:"PHPStan\Rules\Generics\ClassAncestorsRule";i:35;s:44:"PHPStan\Rules\Generics\ClassTemplateTypeRule";i:36;s:47:"PHPStan\Rules\Generics\FunctionTemplateTypeRule";i:37;s:52:"PHPStan\Rules\Generics\FunctionSignatureVarianceRule";i:38;s:45:"PHPStan\Rules\Generics\InterfaceAncestorsRule";i:39;s:48:"PHPStan\Rules\Generics\InterfaceTemplateTypeRule";i:40;s:45:"PHPStan\Rules\Generics\MethodTemplateTypeRule";i:41;s:50:"PHPStan\Rules\Generics\MethodSignatureVarianceRule";i:42;s:44:"PHPStan\Rules\Generics\TraitTemplateTypeRule";i:43;s:58:"PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule";i:44;s:50:"PHPStan\Rules\Operators\InvalidBinaryOperationRule";i:45;s:49:"PHPStan\Rules\Operators\InvalidUnaryOperationRule";i:46;s:54:"PHPStan\Rules\Operators\InvalidComparisonOperationRule";i:47;s:47:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule";i:48;s:55:"PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule";i:49;s:46:"PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule";i:50;s:45:"PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule";i:51;s:49:"PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule";i:52;s:50:"PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule";i:53;s:46:"PHPStan\Rules\Arrays\AppendedArrayItemTypeRule";i:54;s:42:"PHPStan\Rules\Arrays\IterableInForeachRule";i:55;s:47:"PHPStan\Rules\Arrays\OffsetAccessAssignmentRule";i:56;s:45:"PHPStan\Rules\Arrays\OffsetAccessAssignOpRule";i:57;s:52:"PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule";i:58;s:46:"PHPStan\Rules\Arrays\UnpackIterableInArrayRule";i:59;s:51:"PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule";i:60;s:45:"PHPStan\Rules\Functions\ClosureReturnTypeRule";i:61;s:38:"PHPStan\Rules\Generators\YieldTypeRule";i:62;s:36:"PHPStan\Rules\Methods\ReturnTypeRule";i:63;s:66:"PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule";i:64;s:54:"PHPStan\Rules\Properties\TypesAssignedToPropertiesRule";i:65;s:37:"PHPStan\Rules\Variables\ThrowTypeRule";i:66;s:43:"PHPStan\Rules\Variables\VariableCloningRule";i:67;s:36:"PHPStan\Rules\Arrays\DeadForeachRule";i:68;s:71:"PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule";i:69;s:31:"PHPStan\Rules\DeadCode\NoopRule";i:70;s:47:"PHPStan\Rules\DeadCode\UnreachableStatementRule";i:71;s:38:"PHPStan\Rules\Exceptions\DeadCatchRule";i:72;s:67:"PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule";i:73;s:63:"PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule";i:74;s:69:"PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule";i:75;s:69:"PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule";i:76;s:63:"PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule";i:77;s:64:"PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule";i:78;s:60:"PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule";i:79;s:57:"PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule";i:80;s:56:"PHPStan\Rules\Methods\MissingMethodParameterTypehintRule";i:81;s:53:"PHPStan\Rules\Methods\MissingMethodReturnTypehintRule";i:82;s:52:"PHPStan\Rules\Properties\MissingPropertyTypehintRule";i:83;s:55:"PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule";i:84;s:61:"PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule";i:85;s:55:"PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule";i:86;s:53:"PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule";i:87;s:59:"PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule";i:88;s:66:"PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule";i:89;s:54:"PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule";i:90;s:66:"PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule";i:91;s:59:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule";i:92;s:63:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule";i:93;s:61:"PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule";i:94;s:71:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule";i:95;s:67:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule";i:96;s:68:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule";i:97;s:52:"PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule";i:98;s:53:"PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule";i:99;s:24:"PhpParser\BuilderFactory";i:100;s:27:"PHPStan\Parser\LexerFactory";i:101;s:34:"PhpParser\NodeVisitor\NameResolver";i:102;s:29:"PhpParser\NodeVisitorAbstract";i:103;s:21:"PhpParser\NodeVisitor";i:104;s:43:"PhpParser\NodeVisitor\NodeConnectingVisitor";i:105;s:32:"PhpParser\PrettyPrinter\Standard";i:106;s:31:"PhpParser\PrettyPrinterAbstract";i:107;s:39:"PHPStan\Broker\AnonymousClassNameHelper";i:108;s:36:"PHPStan\Php\PhpVersionFactoryFactory";i:109;s:32:"PHPStan\PhpDocParser\Lexer\Lexer";i:110;s:38:"PHPStan\PhpDocParser\Parser\TypeParser";i:111;s:43:"PHPStan\PhpDocParser\Parser\ConstExprParser";i:112;s:40:"PHPStan\PhpDocParser\Parser\PhpDocParser";i:113;s:40:"PHPStan\PhpDoc\PhpDocInheritanceResolver";i:114;s:33:"PHPStan\PhpDoc\PhpDocNodeResolver";i:115;s:35:"PHPStan\PhpDoc\PhpDocStringResolver";i:116;s:36:"PHPStan\PhpDoc\ConstExprNodeResolver";i:117;s:61:"PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension";i:118;s:40:"PHPStan\PhpDoc\TypeNodeResolverExtension";i:119;s:31:"PHPStan\PhpDoc\TypeNodeResolver";i:120;s:33:"PHPStan\PhpDoc\TypeStringResolver";i:121;s:28:"PHPStan\PhpDoc\StubValidator";i:122;s:25:"PHPStan\Analyser\Analyser";i:123;s:29:"PHPStan\Analyser\FileAnalyser";i:124;s:35:"PHPStan\Analyser\IgnoredErrorHelper";i:125;s:33:"PHPStan\Analyser\LazyScopeFactory";i:126;s:29:"PHPStan\Analyser\ScopeFactory";i:127;s:34:"PHPStan\Analyser\NodeScopeResolver";i:128;s:47:"PHPStan\Analyser\ResultCache\ResultCacheClearer";i:129;s:19:"PHPStan\Cache\Cache";i:130;s:34:"PHPStan\Command\AnalyseApplication";i:131;s:30:"PHPStan\Command\AnalyserRunner";i:132;s:32:"PHPStan\Command\FixerApplication";i:133;s:37:"PHPStan\Command\IgnoredRegexValidator";i:134;s:35:"PHPStan\Dependency\DependencyDumper";i:135;s:37:"PHPStan\Dependency\DependencyResolver";i:136;s:38:"PHPStan\Dependency\ExportedNodeFetcher";i:137;s:39:"PHPStan\Dependency\ExportedNodeResolver";i:138;s:38:"PHPStan\Dependency\ExportedNodeVisitor";i:139;s:48:"PHPStan\DependencyInjection\Nette\NetteContainer";i:140;s:37:"PHPStan\DependencyInjection\Container";i:141;s:54:"PHPStan\DependencyInjection\DerivativeContainerFactory";i:142;s:23:"PHPStan\File\FileHelper";i:143;s:25:"PHPStan\File\FileExcluder";i:144;s:23:"PHPStan\File\FileFinder";i:145;s:24:"PHPStan\File\FileMonitor";i:146;s:41:"PHPStan\NodeVisitor\StatementOrderVisitor";i:147;s:33:"PHPStan\Parallel\ParallelAnalyser";i:148;s:26:"PHPStan\Parallel\Scheduler";i:149;s:27:"PHPStan\Parser\CachedParser";i:150;s:21:"PHPStan\Parser\Parser";i:151;s:42:"PHPStan\Parser\FunctionCallStatementFinder";i:152;s:34:"PHPStan\Parser\NodeChildrenVisitor";i:153;s:30:"PHPStan\Process\CpuCoreCounter";i:154;s:73:"PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension";i:155;s:50:"PHPStan\Reflection\MethodsClassReflectionExtension";i:156;s:76:"PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension";i:157;s:53:"PHPStan\Reflection\PropertiesClassReflectionExtension";i:158;s:64:"PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor";i:159;s:66:"PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher";i:160;s:71:"PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator";i:161;s:78:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\SourceLocator";i:162;s:96:"PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker";i:163;s:91:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository";i:164;s:92:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository";i:165;s:61:"PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension";i:166;s:64:"PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension";i:167;s:50:"PHPStan\Reflection\Php\PhpClassReflectionExtension";i:168;s:68:"PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension";i:169;s:39:"PHPStan\Reflection\BrokerAwareExtension";i:170;s:64:"PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider";i:171;s:50:"PHPStan\Reflection\SignatureMap\SignatureMapParser";i:172;s:60:"PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider";i:173;s:52:"PHPStan\Reflection\SignatureMap\SignatureMapProvider";i:174;s:56:"PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider";i:175;s:59:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory";i:176;s:39:"PHPStan\Rules\ClassCaseSensitivityCheck";i:177;s:52:"PHPStan\Rules\Comparison\ConstantConditionRuleHelper";i:178;s:50:"PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper";i:179;s:41:"PHPStan\Rules\FunctionCallParametersCheck";i:180;s:37:"PHPStan\Rules\FunctionDefinitionCheck";i:181;s:37:"PHPStan\Rules\FunctionReturnTypeCheck";i:182;s:44:"PHPStan\Rules\Generics\GenericAncestorsCheck";i:183;s:45:"PHPStan\Rules\Generics\GenericObjectTypeCheck";i:184;s:40:"PHPStan\Rules\Generics\TemplateTypeCheck";i:185;s:36:"PHPStan\Rules\Generics\VarianceCheck";i:186;s:24:"PHPStan\Rules\IssetCheck";i:187;s:41:"PHPStan\Rules\Methods\MethodSignatureRule";i:188;s:34:"PHPStan\Rules\MissingTypehintCheck";i:189;s:65:"PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider";i:190;s:61:"PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider";i:191;s:43:"PHPStan\Rules\Properties\PropertyDescriptor";i:192;s:49:"PHPStan\Rules\Properties\PropertyReflectionFinder";i:193;s:29:"PHPStan\Rules\RegistryFactory";i:194;s:29:"PHPStan\Rules\RuleLevelHelper";i:195;s:43:"PHPStan\Rules\UnusedFunctionParametersCheck";i:196;s:27:"PHPStan\Type\FileTypeMapper";i:197;s:57:"PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension";i:198;s:47:"PHPStan\Type\DynamicFunctionReturnTypeExtension";i:199;s:53:"PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension";i:200;s:57:"PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension";i:201;s:65:"PHPStan\Type\Php\ArrayFilterFunctionReturnTypeReturnTypeExtension";i:202;s:51:"PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension";i:203;s:62:"PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension";i:204;s:44:"PHPStan\Type\FunctionTypeSpecifyingExtension";i:205;s:44:"PHPStan\Analyser\TypeSpecifierAwareExtension";i:206;s:56:"PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension";i:207;s:55:"PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension";i:208;s:60:"PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension";i:209;s:52:"PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension";i:210;s:61:"PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension";i:211;s:52:"PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension";i:212;s:55:"PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension";i:213;s:54:"PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension";i:214;s:54:"PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension";i:215;s:62:"PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension";i:216;s:62:"PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension";i:217;s:63:"PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension";i:218;s:54:"PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension";i:219;s:54:"PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension";i:220;s:51:"PHPStan\Type\DynamicStaticMethodReturnTypeExtension";i:221;s:56:"PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension";i:222;s:45:"PHPStan\Type\DynamicMethodReturnTypeExtension";i:223;s:62:"PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension";i:224;s:49:"PHPStan\Type\Php\CountFunctionReturnTypeExtension";i:225;s:53:"PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension";i:226;s:44:"PHPStan\Type\Php\CurlInitReturnTypeExtension";i:227;s:48:"PHPStan\Type\Php\DateFunctionReturnTypeExtension";i:228;s:48:"PHPStan\Type\Php\DsMapDynamicReturnTypeExtension";i:229;s:58:"PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension";i:230;s:58:"PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension";i:231;s:52:"PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension";i:232;s:57:"PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension";i:233;s:51:"PHPStan\Type\Php\GetClassDynamicReturnTypeExtension";i:234;s:65:"PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension";i:235;s:63:"PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension";i:236;s:53:"PHPStan\Type\Php\HashHmacFunctionsReturnTypeExtension";i:237;s:49:"PHPStan\Type\Php\HashFunctionsReturnTypeExtension";i:238;s:65:"PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension";i:239;s:47:"PHPStan\Type\Php\StatDynamicReturnTypeExtension";i:240;s:52:"PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension";i:241;s:54:"PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension";i:242;s:50:"PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension";i:243;s:59:"PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension";i:244;s:52:"PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension";i:245;s:59:"PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension";i:246;s:64:"PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension";i:247;s:60:"PHPStan\Type\Php\VarExportFunctionDynamicReturnTypeExtension";i:248;s:47:"PHPStan\Type\Php\MbFunctionsReturnTypeExtension";i:249;s:61:"PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension";i:250;s:53:"PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension";i:251;s:50:"PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension";i:252;s:59:"PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension";i:253;s:65:"PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension";i:254;s:47:"PHPStan\Type\Php\PowFunctionReturnTypeExtension";i:255;s:53:"PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension";i:256;s:53:"PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension";i:257;s:49:"PHPStan\Type\Php\RangeFunctionReturnTypeExtension";i:258;s:54:"PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension";i:259;s:59:"PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension";i:260;s:54:"PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension";i:261;s:55:"PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension";i:262;s:55:"PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension";i:263;s:53:"PHPStan\Type\Php\IsIntFunctionTypeSpecifyingExtension";i:264;s:55:"PHPStan\Type\Php\IsFloatFunctionTypeSpecifyingExtension";i:265;s:54:"PHPStan\Type\Php\IsNullFunctionTypeSpecifyingExtension";i:266;s:55:"PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension";i:267;s:54:"PHPStan\Type\Php\IsBoolFunctionTypeSpecifyingExtension";i:268;s:58:"PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension";i:269;s:59:"PHPStan\Type\Php\IsCountableFunctionTypeSpecifyingExtension";i:270;s:58:"PHPStan\Type\Php\IsResourceFunctionTypeSpecifyingExtension";i:271;s:58:"PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension";i:272;s:56:"PHPStan\Type\Php\IsStringFunctionTypeSpecifyingExtension";i:273;s:60:"PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension";i:274;s:56:"PHPStan\Type\Php\IsObjectFunctionTypeSpecifyingExtension";i:275;s:57:"PHPStan\Type\Php\IsNumericFunctionTypeSpecifyingExtension";i:276;s:56:"PHPStan\Type\Php\IsScalarFunctionTypeSpecifyingExtension";i:277;s:51:"PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension";i:278;s:59:"PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension";i:279;s:66:"PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension";i:280;s:63:"PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension";i:281;s:52:"PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension";i:282;s:58:"PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension";i:283;s:63:"PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension";i:284;s:37:"PHPStan\Analyser\TypeSpecifierFactory";i:285;s:46:"PHPStan\File\ParentDirectoryRelativePathHelper";i:286;s:31:"PHPStan\File\RelativePathHelper";i:287;s:28:"PHPStan\Broker\BrokerFactory";i:288;s:30:"PHPStan\Cache\FileCacheStorage";i:289;s:26:"PHPStan\Cache\CacheStorage";i:290;s:25:"PHPStan\Parser\RichParser";i:291;s:27:"PHPStan\Parser\SimpleParser";i:292;s:33:"PHPStan\Parser\PhpParserDecorator";i:293;s:16:"PhpParser\Parser";i:294;s:21:"PhpParser\Parser\Php7";i:295;s:24:"PhpParser\ParserAbstract";i:296;s:33:"PHPStan\PhpDoc\StubPhpDocProvider";i:297;s:63:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory";i:298;s:37:"PHPStan\Reflection\ReflectionProvider";i:299;s:69:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector";i:300;s:70:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector";i:301;s:65:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\Reflector";i:302;s:72:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingFunctionReflector";i:303;s:73:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector";i:304;s:72:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingConstantReflector";i:305;s:73:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector";i:306;s:60:"PHPStan\Reflection\BetterReflection\BetterReflectionProvider";i:307;s:13:"Hoa\File\Read";i:308;s:13:"Hoa\File\File";i:309;s:16:"Hoa\File\Generic";i:310;s:17:"Hoa\Stream\Stream";i:311;s:25:"Hoa\Stream\IStream\Stream";i:312;s:20:"Hoa\Event\Listenable";i:313;s:16:"Hoa\Event\Source";i:314;s:27:"Hoa\Stream\IStream\Pathable";i:315;s:27:"Hoa\Stream\IStream\Statable";i:316;s:28:"Hoa\Stream\IStream\Touchable";i:317;s:29:"Hoa\Stream\IStream\Bufferable";i:318;s:27:"Hoa\Stream\IStream\Lockable";i:319;s:28:"Hoa\Stream\IStream\Pointable";i:320;s:21:"Hoa\Stream\IStream\In";i:321;s:17:"Hoa\Event\Listens";i:322;s:70:"PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider";i:323;s:52:"PHPStan\Reflection\Runtime\RuntimeReflectionProvider";i:324;s:72:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory";i:325;s:100:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber";i:326;s:87:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\SourceStubber";i:327;s:97:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber";i:328;s:25:"PhpParser\Lexer\Emulative";i:329;s:15:"PhpParser\Lexer";i:330;s:32:"PHPStan\Parser\PathRoutingParser";i:331;s:48:"PHPStan\Command\ErrorFormatter\RawErrorFormatter";i:332;s:45:"PHPStan\Command\ErrorFormatter\ErrorFormatter";i:333;s:57:"PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter";i:334;s:50:"PHPStan\Command\ErrorFormatter\TableErrorFormatter";i:335;s:55:"PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter";i:336;s:49:"PHPStan\Command\ErrorFormatter\JsonErrorFormatter";i:337;s:50:"PHPStan\Command\ErrorFormatter\JunitErrorFormatter";i:338;s:51:"PHPStan\Command\ErrorFormatter\GitlabErrorFormatter";i:339;s:51:"PHPStan\Command\ErrorFormatter\GithubErrorFormatter";i:340;s:53:"PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter";i:341;s:51:"PHPStan\Rules\Classes\ExistingClassInInstanceOfRule";i:342;s:53:"PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule";i:343;s:53:"PHPStan\Rules\Functions\CallToNonExistentFunctionRule";i:344;s:43:"PHPStan\Rules\Functions\ClosureUsesThisRule";i:345;s:37:"PHPStan\Rules\Methods\CallMethodsRule";i:346;s:43:"PHPStan\Rules\Methods\CallStaticMethodsRule";i:347;s:42:"PHPStan\Rules\Methods\OverridingMethodRule";i:348;s:60:"PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule";i:349;s:39:"PHPStan\Rules\Missing\MissingReturnRule";i:350;s:52:"PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule";i:351;s:47:"PHPStan\Rules\Namespaces\ExistingNamesInUseRule";i:352;s:50:"PHPStan\Rules\Operators\InvalidIncDecOperationRule";i:353;s:45:"PHPStan\Rules\Properties\AccessPropertiesRule";i:354;s:51:"PHPStan\Rules\Properties\AccessStaticPropertiesRule";i:355;s:56:"PHPStan\Rules\Properties\ExistingClassesInPropertiesRule";i:356;s:50:"PHPStan\Rules\Properties\UninitializedPropertyRule";i:357;s:56:"PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule";i:358;s:55:"PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule";i:359;s:44:"PHPStan\Rules\Variables\CompactVariablesRule";i:360;s:43:"PHPStan\Rules\Variables\DefinedVariableRule";i:361;s:49:"PHPStan\Rules\Regexp\RegularExpressionPatternRule";i:362;s:43:"PHPStan\Rules\Whitespace\FileWhitespaceRule";i:363;s:57:"PHPStan\Rules\Variables\VariableCertaintyNullCoalesceRule";i:364;s:31:"PHPStan\Rules\Classes\MixinRule";i:365;s:41:"PHPStan\Rules\Functions\CallCallablesRule";i:366;s:48:"PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule";i:367;s:45:"PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule";i:368;s:50:"PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule";i:369;s:46:"PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule";i:370;s:57:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule";i:371;s:38:"PHPStan\Rules\Functions\ReturnTypeRule";i:372;s:42:"PHPStan\Rules\Generators\YieldFromTypeRule";i:373;s:45:"PHPStan\Rules\Generators\YieldInGeneratorRule";i:374;s:46:"PHPStan\Rules\Classes\ImpossibleInstanceOfRule";i:375;s:56:"PHPStan\Rules\Comparison\BooleanAndConstantConditionRule";i:376;s:55:"PHPStan\Rules\Comparison\BooleanOrConstantConditionRule";i:377;s:56:"PHPStan\Rules\Comparison\BooleanNotConstantConditionRule";i:378;s:48:"PHPStan\Rules\DeadCode\UnusedPrivateConstantRule";i:379;s:46:"PHPStan\Rules\DeadCode\UnusedPrivateMethodRule";i:380;s:48:"PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule";i:381;s:52:"PHPStan\Rules\Comparison\ElseIfConstantConditionRule";i:382;s:48:"PHPStan\Rules\Comparison\IfConstantConditionRule";i:383;s:60:"PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule";i:384;s:58:"PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule";i:385;s:64:"PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule";i:386;s:61:"PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule";i:387;s:61:"PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule";i:388;s:50:"PHPStan\Rules\Comparison\UnreachableIfBranchesRule";i:389;s:57:"PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule";i:390;s:62:"PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule";i:391;s:33:"PHPStan\Rules\Variables\IssetRule";i:392;s:40:"PHPStan\Rules\Variables\NullCoalesceRule";i:393;s:47:"PHPStan\Rules\Functions\RandomIntParametersRule";i:394;s:58:"PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension";i:395;s:45:"PHPStan\PhpDoc\TypeNodeResolverAwareExtension";i:396;s:65:"PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension";i:397;s:63:"PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension";i:398;s:42:"PHPStan\Type\MethodTypeSpecifyingExtension";i:399;s:69:"PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension";i:400;s:48:"PHPStan\Type\StaticMethodTypeSpecifyingExtension";i:401;s:63:"PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension";i:402;s:58:"PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension";i:403;s:57:"PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension";i:404;s:48:"PHPStan\Rules\Deprecations\DeprecatedClassHelper";i:405;s:41:"_HumbugBox96739a27ace4\Nette\DI\Container";i:406;s:40:"_HumbugBox96739a27ace4\Nette\SmartObject";i:407;s:22:"PHPStan\Php\PhpVersion";i:408;s:29:"PHPStan\Php\PhpVersionFactory";i:409;s:56:"PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider";i:410;s:47:"PHPStan\Analyser\ResultCache\ResultCacheManager";i:411;s:54:"PHPStan\Analyser\ResultCache\ResultCacheManagerFactory";i:412;s:79:"PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider";i:413;s:75:"PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider";i:414;s:80:"PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider";i:415;s:44:"PHPStan\Reflection\Php\PhpFunctionReflection";i:416;s:37:"PHPStan\Reflection\FunctionReflection";i:417;s:41:"PHPStan\Reflection\ReflectionWithFilename";i:418;s:44:"PHPStan\Reflection\FunctionReflectionFactory";i:419;s:81:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocator";i:420;s:88:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory";i:421;s:79:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator";i:422;s:86:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory";i:423;s:82:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator";i:424;s:89:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory";i:425;s:42:"PHPStan\Reflection\Php\PhpMethodReflection";i:426;s:35:"PHPStan\Reflection\MethodReflection";i:427;s:40:"PHPStan\Reflection\ClassMemberReflection";i:428;s:49:"PHPStan\Reflection\Php\PhpMethodReflectionFactory";i:429;s:64:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider";i:430;s:30:"PHPStan\Analyser\TypeSpecifier";i:431;s:21:"PHPStan\Broker\Broker";i:432;s:22:"PHPStan\Rules\Registry";i:433;s:23:"Hoa\Compiler\Llk\Parser";i:434;s:67:"PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory";}i:4;a:257:{i:0;s:71:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory::create";i:1;s:66:"PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule::__construct";i:2;s:52:"PHPStan\Rules\Classes\ClassConstantRule::__construct";i:3;s:71:"PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule::__construct";i:4;s:72:"PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule::__construct";i:5;s:66:"PHPStan\Rules\Classes\ExistingClassInClassExtendsRule::__construct";i:6;s:62:"PHPStan\Rules\Classes\ExistingClassInTraitUseRule::__construct";i:7;s:52:"PHPStan\Rules\Classes\InstantiationRule::__construct";i:8;s:57:"PHPStan\Rules\Exceptions\ThrowExpressionRule::__construct";i:9;s:65:"PHPStan\Rules\Functions\CallToFunctionParametersRule::__construct";i:10;s:80:"PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule::__construct";i:11;s:74:"PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule::__construct";i:12;s:67:"PHPStan\Rules\Functions\ExistingClassesInTypehintsRule::__construct";i:13;s:65:"PHPStan\Rules\Methods\ExistingClassesInTypehintsRule::__construct";i:14;s:66:"PHPStan\Rules\Properties\AccessPropertiesInAssignRule::__construct";i:15;s:72:"PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule::__construct";i:16;s:73:"PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule::__construct";i:17;s:66:"PHPStan\Rules\Classes\UnusedConstructorParametersRule::__construct";i:18;s:58:"PHPStan\Rules\Functions\UnusedClosureUsesRule::__construct";i:19;s:40:"PHPStan\Rules\Cast\EchoRule::__construct";i:20;s:47:"PHPStan\Rules\Cast\InvalidCastRule::__construct";i:21;s:63:"PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule::__construct";i:22;s:41:"PHPStan\Rules\Cast\PrintRule::__construct";i:23;s:54:"PHPStan\Rules\Generics\ClassAncestorsRule::__construct";i:24;s:57:"PHPStan\Rules\Generics\ClassTemplateTypeRule::__construct";i:25;s:60:"PHPStan\Rules\Generics\FunctionTemplateTypeRule::__construct";i:26;s:65:"PHPStan\Rules\Generics\FunctionSignatureVarianceRule::__construct";i:27;s:58:"PHPStan\Rules\Generics\InterfaceAncestorsRule::__construct";i:28;s:61:"PHPStan\Rules\Generics\InterfaceTemplateTypeRule::__construct";i:29;s:58:"PHPStan\Rules\Generics\MethodTemplateTypeRule::__construct";i:30;s:63:"PHPStan\Rules\Generics\MethodSignatureVarianceRule::__construct";i:31;s:57:"PHPStan\Rules\Generics\TraitTemplateTypeRule::__construct";i:32;s:63:"PHPStan\Rules\Operators\InvalidBinaryOperationRule::__construct";i:33;s:67:"PHPStan\Rules\Operators\InvalidComparisonOperationRule::__construct";i:34;s:60:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule::__construct";i:35;s:68:"PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule::__construct";i:36;s:59:"PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule::__construct";i:37;s:58:"PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule::__construct";i:38;s:62:"PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule::__construct";i:39;s:63:"PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule::__construct";i:40;s:59:"PHPStan\Rules\Arrays\AppendedArrayItemTypeRule::__construct";i:41;s:55:"PHPStan\Rules\Arrays\IterableInForeachRule::__construct";i:42;s:60:"PHPStan\Rules\Arrays\OffsetAccessAssignmentRule::__construct";i:43;s:58:"PHPStan\Rules\Arrays\OffsetAccessAssignOpRule::__construct";i:44;s:65:"PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule::__construct";i:45;s:59:"PHPStan\Rules\Arrays\UnpackIterableInArrayRule::__construct";i:46;s:64:"PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule::__construct";i:47;s:58:"PHPStan\Rules\Functions\ClosureReturnTypeRule::__construct";i:48;s:51:"PHPStan\Rules\Generators\YieldTypeRule::__construct";i:49;s:49:"PHPStan\Rules\Methods\ReturnTypeRule::__construct";i:50;s:79:"PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule::__construct";i:51;s:67:"PHPStan\Rules\Properties\TypesAssignedToPropertiesRule::__construct";i:52;s:50:"PHPStan\Rules\Variables\ThrowTypeRule::__construct";i:53;s:56:"PHPStan\Rules\Variables\VariableCloningRule::__construct";i:54;s:44:"PHPStan\Rules\DeadCode\NoopRule::__construct";i:55;s:80:"PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule::__construct";i:56;s:76:"PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule::__construct";i:57;s:82:"PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule::__construct";i:58;s:73:"PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule::__construct";i:59;s:70:"PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule::__construct";i:60;s:69:"PHPStan\Rules\Methods\MissingMethodParameterTypehintRule::__construct";i:61;s:66:"PHPStan\Rules\Methods\MissingMethodReturnTypehintRule::__construct";i:62;s:65:"PHPStan\Rules\Properties\MissingPropertyTypehintRule::__construct";i:63;s:68:"PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule::__construct";i:64;s:74:"PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule::__construct";i:65;s:68:"PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule::__construct";i:66;s:66:"PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule::__construct";i:67;s:72:"PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule::__construct";i:68;s:79:"PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule::__construct";i:69;s:67:"PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule::__construct";i:70;s:79:"PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule::__construct";i:71;s:72:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule::__construct";i:72;s:76:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule::__construct";i:73;s:74:"PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule::__construct";i:74;s:84:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule::__construct";i:75;s:80:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule::__construct";i:76;s:81:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule::__construct";i:77;s:66:"PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule::__construct";i:78;s:40:"PHPStan\Parser\LexerFactory::__construct";i:79;s:47:"PhpParser\NodeVisitor\NameResolver::__construct";i:80;s:44:"PhpParser\PrettyPrinterAbstract::__construct";i:81;s:52:"PHPStan\Broker\AnonymousClassNameHelper::__construct";i:82;s:37:"PHPStan\Php\PhpVersionFactory::create";i:83;s:44:"PHPStan\Php\PhpVersionFactoryFactory::create";i:84;s:49:"PHPStan\Php\PhpVersionFactoryFactory::__construct";i:85;s:51:"PHPStan\PhpDocParser\Parser\TypeParser::__construct";i:86;s:53:"PHPStan\PhpDocParser\Parser\PhpDocParser::__construct";i:87;s:53:"PHPStan\PhpDoc\PhpDocInheritanceResolver::__construct";i:88;s:46:"PHPStan\PhpDoc\PhpDocNodeResolver::__construct";i:89;s:48:"PHPStan\PhpDoc\PhpDocStringResolver::__construct";i:90;s:74:"PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension::__construct";i:91;s:44:"PHPStan\PhpDoc\TypeNodeResolver::__construct";i:92;s:73:"PHPStan\PhpDoc\LazyTypeNodeResolverExtensionRegistryProvider::__construct";i:93;s:46:"PHPStan\PhpDoc\TypeStringResolver::__construct";i:94;s:41:"PHPStan\PhpDoc\StubValidator::__construct";i:95;s:38:"PHPStan\Analyser\Analyser::__construct";i:96;s:42:"PHPStan\Analyser\FileAnalyser::__construct";i:97;s:48:"PHPStan\Analyser\IgnoredErrorHelper::__construct";i:98;s:46:"PHPStan\Analyser\LazyScopeFactory::__construct";i:99;s:47:"PHPStan\Analyser\NodeScopeResolver::__construct";i:100;s:60:"PHPStan\Analyser\ResultCache\ResultCacheManager::__construct";i:101;s:60:"PHPStan\Analyser\ResultCache\ResultCacheClearer::__construct";i:102;s:32:"PHPStan\Cache\Cache::__construct";i:103;s:47:"PHPStan\Command\AnalyseApplication::__construct";i:104;s:43:"PHPStan\Command\AnalyserRunner::__construct";i:105;s:45:"PHPStan\Command\FixerApplication::__construct";i:106;s:50:"PHPStan\Command\IgnoredRegexValidator::__construct";i:107;s:48:"PHPStan\Dependency\DependencyDumper::__construct";i:108;s:50:"PHPStan\Dependency\DependencyResolver::__construct";i:109;s:51:"PHPStan\Dependency\ExportedNodeFetcher::__construct";i:110;s:52:"PHPStan\Dependency\ExportedNodeResolver::__construct";i:111;s:51:"PHPStan\Dependency\ExportedNodeVisitor::__construct";i:112;s:59:"PHPStan\DependencyInjection\MemoizingContainer::__construct";i:113;s:61:"PHPStan\DependencyInjection\Nette\NetteContainer::__construct";i:114;s:67:"PHPStan\DependencyInjection\DerivativeContainerFactory::__construct";i:115;s:96:"PHPStan\DependencyInjection\Reflection\LazyClassReflectionExtensionRegistryProvider::__construct";i:116;s:92:"PHPStan\DependencyInjection\Type\LazyDynamicReturnTypeExtensionRegistryProvider::__construct";i:117;s:97:"PHPStan\DependencyInjection\Type\LazyOperatorTypeSpecifyingExtensionRegistryProvider::__construct";i:118;s:36:"PHPStan\File\FileHelper::__construct";i:119;s:38:"PHPStan\File\FileExcluder::__construct";i:120;s:36:"PHPStan\File\FileFinder::__construct";i:121;s:37:"PHPStan\File\FileMonitor::__construct";i:122;s:46:"PHPStan\Parallel\ParallelAnalyser::__construct";i:123;s:39:"PHPStan\Parallel\Scheduler::__construct";i:124;s:40:"PHPStan\Parser\CachedParser::__construct";i:125;s:57:"PHPStan\Reflection\Php\PhpFunctionReflection::__construct";i:126;s:79:"PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher::__construct";i:127;s:84:"PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator::__construct";i:128;s:109:"PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker::__construct";i:129;s:94:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocator::__construct";i:130;s:104:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository::__construct";i:131;s:92:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator::__construct";i:132;s:95:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator::__construct";i:133;s:105:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository::__construct";i:134;s:74:"PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension::__construct";i:135;s:77:"PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension::__construct";i:136;s:63:"PHPStan\Reflection\Php\PhpClassReflectionExtension::__construct";i:137;s:55:"PHPStan\Reflection\Php\PhpMethodReflection::__construct";i:138;s:81:"PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension::__construct";i:139;s:81:"PHPStan\Reflection\ReflectionProvider\LazyReflectionProviderProvider::__construct";i:140;s:77:"PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider::__construct";i:141;s:63:"PHPStan\Reflection\SignatureMap\SignatureMapParser::__construct";i:142;s:73:"PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider::__construct";i:143;s:69:"PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider::__construct";i:144;s:72:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory::__construct";i:145;s:67:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory::create";i:146;s:52:"PHPStan\Rules\ClassCaseSensitivityCheck::__construct";i:147;s:65:"PHPStan\Rules\Comparison\ConstantConditionRuleHelper::__construct";i:148;s:63:"PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper::__construct";i:149;s:54:"PHPStan\Rules\FunctionCallParametersCheck::__construct";i:150;s:50:"PHPStan\Rules\FunctionDefinitionCheck::__construct";i:151;s:50:"PHPStan\Rules\FunctionReturnTypeCheck::__construct";i:152;s:57:"PHPStan\Rules\Generics\GenericAncestorsCheck::__construct";i:153;s:53:"PHPStan\Rules\Generics\TemplateTypeCheck::__construct";i:154;s:37:"PHPStan\Rules\IssetCheck::__construct";i:155;s:54:"PHPStan\Rules\Methods\MethodSignatureRule::__construct";i:156;s:47:"PHPStan\Rules\MissingTypehintCheck::__construct";i:157;s:78:"PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider::__construct";i:158;s:42:"PHPStan\Rules\RegistryFactory::__construct";i:159;s:42:"PHPStan\Rules\RuleLevelHelper::__construct";i:160;s:40:"PHPStan\Type\FileTypeMapper::__construct";i:161;s:71:"PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension::__construct";i:162;s:65:"PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension::__construct";i:163;s:78:"PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension::__construct";i:164;s:67:"PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension::__construct";i:165;s:65:"PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension::__construct";i:166;s:60:"PHPStan\Type\Php\MbFunctionsReturnTypeExtension::__construct";i:167;s:71:"PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension::__construct";i:168;s:72:"PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension::__construct";i:169;s:79:"PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension::__construct";i:170;s:45:"PHPStan\Analyser\TypeSpecifierFactory::create";i:171;s:50:"PHPStan\Analyser\TypeSpecifierFactory::__construct";i:172;s:49:"PHPStan\File\FuzzyRelativePathHelper::__construct";i:173;s:50:"PHPStan\File\SimpleRelativePathHelper::__construct";i:174;s:59:"PHPStan\File\ParentDirectoryRelativePathHelper::__construct";i:175;s:36:"PHPStan\Broker\BrokerFactory::create";i:176;s:41:"PHPStan\Broker\BrokerFactory::__construct";i:177;s:43:"PHPStan\Cache\FileCacheStorage::__construct";i:178;s:38:"PHPStan\Parser\RichParser::__construct";i:179;s:40:"PHPStan\Parser\SimpleParser::__construct";i:180;s:46:"PHPStan\Parser\PhpParserDecorator::__construct";i:181;s:35:"PHPStan\Parser\LexerFactory::create";i:182;s:37:"PhpParser\ParserAbstract::__construct";i:183;s:37:"PHPStan\Rules\RegistryFactory::create";i:184;s:46:"PHPStan\PhpDoc\StubPhpDocProvider::__construct";i:185;s:76:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory::__construct";i:187;s:80:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory::create";i:188;s:83:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector::__construct";i:189;s:53:"_HumbugBox96739a27ace4\Nette\DI\Container::getService";i:190;s:86:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector::__construct";i:191;s:86:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector::__construct";i:192;s:73:"PHPStan\Reflection\BetterReflection\BetterReflectionProvider::__construct";i:193;s:26:"Hoa\Compiler\Llk\Llk::load";i:194;s:26:"Hoa\File\Read::__construct";i:195;s:83:"PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider::__construct";i:196;s:65:"PHPStan\Reflection\Runtime\RuntimeReflectionProvider::__construct";i:197;s:85:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory::__construct";i:199;s:113:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber::__construct";i:200;s:110:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber::__construct";i:201;s:38:"PhpParser\Lexer\Emulative::__construct";i:204;s:45:"PHPStan\Parser\PathRoutingParser::__construct";i:205;s:70:"PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter::__construct";i:206;s:63:"PHPStan\Command\ErrorFormatter\TableErrorFormatter::__construct";i:207;s:68:"PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter::__construct";i:208;s:62:"PHPStan\Command\ErrorFormatter\JsonErrorFormatter::__construct";i:209;s:63:"PHPStan\Command\ErrorFormatter\JunitErrorFormatter::__construct";i:211;s:64:"PHPStan\Command\ErrorFormatter\GitlabErrorFormatter::__construct";i:212;s:64:"PHPStan\Command\ErrorFormatter\GithubErrorFormatter::__construct";i:213;s:66:"PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter::__construct";i:214;s:64:"PHPStan\Rules\Classes\ExistingClassInInstanceOfRule::__construct";i:215;s:66:"PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule::__construct";i:216;s:66:"PHPStan\Rules\Functions\CallToNonExistentFunctionRule::__construct";i:217;s:50:"PHPStan\Rules\Methods\CallMethodsRule::__construct";i:218;s:56:"PHPStan\Rules\Methods\CallStaticMethodsRule::__construct";i:219;s:55:"PHPStan\Rules\Methods\OverridingMethodRule::__construct";i:220;s:73:"PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule::__construct";i:221;s:52:"PHPStan\Rules\Missing\MissingReturnRule::__construct";i:222;s:65:"PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule::__construct";i:223;s:60:"PHPStan\Rules\Namespaces\ExistingNamesInUseRule::__construct";i:224;s:63:"PHPStan\Rules\Operators\InvalidIncDecOperationRule::__construct";i:225;s:58:"PHPStan\Rules\Properties\AccessPropertiesRule::__construct";i:226;s:64:"PHPStan\Rules\Properties\AccessStaticPropertiesRule::__construct";i:227;s:69:"PHPStan\Rules\Properties\ExistingClassesInPropertiesRule::__construct";i:228;s:63:"PHPStan\Rules\Properties\UninitializedPropertyRule::__construct";i:229;s:69:"PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule::__construct";i:230;s:68:"PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule::__construct";i:231;s:57:"PHPStan\Rules\Variables\CompactVariablesRule::__construct";i:232;s:56:"PHPStan\Rules\Variables\DefinedVariableRule::__construct";i:233;s:44:"PHPStan\Rules\Classes\MixinRule::__construct";i:234;s:54:"PHPStan\Rules\Functions\CallCallablesRule::__construct";i:235;s:61:"PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule::__construct";i:236;s:58:"PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule::__construct";i:237;s:63:"PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule::__construct";i:238;s:59:"PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule::__construct";i:239;s:70:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule::__construct";i:240;s:51:"PHPStan\Rules\Functions\ReturnTypeRule::__construct";i:241;s:55:"PHPStan\Rules\Generators\YieldFromTypeRule::__construct";i:242;s:58:"PHPStan\Rules\Generators\YieldInGeneratorRule::__construct";i:243;s:59:"PHPStan\Rules\Classes\ImpossibleInstanceOfRule::__construct";i:244;s:69:"PHPStan\Rules\Comparison\BooleanAndConstantConditionRule::__construct";i:245;s:68:"PHPStan\Rules\Comparison\BooleanOrConstantConditionRule::__construct";i:246;s:69:"PHPStan\Rules\Comparison\BooleanNotConstantConditionRule::__construct";i:247;s:61:"PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule::__construct";i:248;s:65:"PHPStan\Rules\Comparison\ElseIfConstantConditionRule::__construct";i:249;s:61:"PHPStan\Rules\Comparison\IfConstantConditionRule::__construct";i:250;s:73:"PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule::__construct";i:251;s:71:"PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule::__construct";i:252;s:77:"PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule::__construct";i:253;s:74:"PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule::__construct";i:254;s:74:"PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule::__construct";i:255;s:63:"PHPStan\Rules\Comparison\UnreachableIfBranchesRule::__construct";i:256;s:70:"PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule::__construct";i:257;s:75:"PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule::__construct";i:258;s:46:"PHPStan\Rules\Variables\IssetRule::__construct";i:259;s:53:"PHPStan\Rules\Variables\NullCoalesceRule::__construct";i:260;s:60:"PHPStan\Rules\Functions\RandomIntParametersRule::__construct";i:261;s:61:"PHPStan\Rules\Deprecations\DeprecatedClassHelper::__construct";}i:5;s:32:"b6a7294aeaea30a2e99dbe9544241dff";} \ No newline at end of file diff --git a/data/cache/nette.configurator/Container_e563100465.php b/data/cache/nette.configurator/Container_e563100465.php new file mode 100644 index 0000000..481fe0e --- /dev/null +++ b/data/cache/nette.configurator/Container_e563100465.php @@ -0,0 +1,5736 @@ + ['018' => true, '0240' => true], + 'phpstan.broker.methodsClassReflectionExtension' => ['069' => true], + 'phpstan.broker.propertiesClassReflectionExtension' => ['070' => true, '073' => true, '0137' => true], + 'phpstan.broker.dynamicFunctionReturnTypeExtension' => [ + '0101' => true, + '0102' => true, + '0103' => true, + '0104' => true, + '0105' => true, + '0107' => true, + '0108' => true, + '0109' => true, + '0110' => true, + '0111' => true, + '0112' => true, + '0113' => true, + '0114' => true, + '0115' => true, + '0116' => true, + '0117' => true, + '0118' => true, + '0119' => true, + '0123' => true, + '0125' => true, + '0126' => true, + '0128' => true, + '0129' => true, + '0130' => true, + '0131' => true, + '0132' => true, + '0133' => true, + '0134' => true, + '0135' => true, + '0136' => true, + '0138' => true, + '0141' => true, + '0142' => true, + '0143' => true, + '0144' => true, + '0145' => true, + '0146' => true, + '0147' => true, + '0148' => true, + '0149' => true, + '0150' => true, + '0151' => true, + '0152' => true, + '0153' => true, + '0154' => true, + '0155' => true, + '0156' => true, + '0177' => true, + '0178' => true, + '0180' => true, + '0181' => true, + '0182' => true, + ], + 'phpstan.typeSpecifier.functionTypeSpecifyingExtension' => [ + '0106' => true, + '0124' => true, + '0139' => true, + '0140' => true, + '0157' => true, + '0158' => true, + '0159' => true, + '0160' => true, + '0161' => true, + '0162' => true, + '0163' => true, + '0164' => true, + '0165' => true, + '0166' => true, + '0167' => true, + '0168' => true, + '0169' => true, + '0170' => true, + '0171' => true, + '0172' => true, + '0173' => true, + '0174' => true, + '0175' => true, + '0176' => true, + '0241' => true, + ], + 'phpstan.broker.dynamicStaticMethodReturnTypeExtension' => ['0120' => true, '0122' => true], + 'phpstan.broker.dynamicMethodReturnTypeExtension' => [ + '0121' => true, + '0127' => true, + '0138' => true, + '0179' => true, + '0244' => true, + '0245' => true, + '0246' => true, + ], + 'phpstan.rules.rule' => [ + '0187' => true, + '0188' => true, + '0189' => true, + '0191' => true, + '0192' => true, + '0193' => true, + '0195' => true, + '0196' => true, + '0197' => true, + '0198' => true, + '0199' => true, + '0200' => true, + '0201' => true, + '0203' => true, + '0204' => true, + '0205' => true, + '0206' => true, + '0207' => true, + '0210' => true, + '0211' => true, + '0212' => true, + '0213' => true, + '0214' => true, + '0215' => true, + '0216' => true, + '0217' => true, + '0218' => true, + '0219' => true, + '0220' => true, + '0221' => true, + '0222' => true, + '0223' => true, + '0227' => true, + '0228' => true, + '0229' => true, + '0230' => true, + '0231' => true, + '0232' => true, + '0233' => true, + '0234' => true, + '0235' => true, + '0236' => true, + 'rules.0' => true, + 'rules.1' => true, + 'rules.10' => true, + 'rules.11' => true, + 'rules.12' => true, + 'rules.13' => true, + 'rules.14' => true, + 'rules.15' => true, + 'rules.16' => true, + 'rules.17' => true, + 'rules.18' => true, + 'rules.19' => true, + 'rules.2' => true, + 'rules.20' => true, + 'rules.21' => true, + 'rules.22' => true, + 'rules.23' => true, + 'rules.24' => true, + 'rules.25' => true, + 'rules.26' => true, + 'rules.27' => true, + 'rules.28' => true, + 'rules.29' => true, + 'rules.3' => true, + 'rules.30' => true, + 'rules.31' => true, + 'rules.32' => true, + 'rules.33' => true, + 'rules.34' => true, + 'rules.35' => true, + 'rules.36' => true, + 'rules.37' => true, + 'rules.38' => true, + 'rules.39' => true, + 'rules.4' => true, + 'rules.40' => true, + 'rules.41' => true, + 'rules.42' => true, + 'rules.43' => true, + 'rules.44' => true, + 'rules.45' => true, + 'rules.46' => true, + 'rules.47' => true, + 'rules.48' => true, + 'rules.49' => true, + 'rules.5' => true, + 'rules.50' => true, + 'rules.51' => true, + 'rules.52' => true, + 'rules.53' => true, + 'rules.54' => true, + 'rules.55' => true, + 'rules.56' => true, + 'rules.57' => true, + 'rules.58' => true, + 'rules.59' => true, + 'rules.6' => true, + 'rules.60' => true, + 'rules.61' => true, + 'rules.62' => true, + 'rules.63' => true, + 'rules.64' => true, + 'rules.65' => true, + 'rules.66' => true, + 'rules.67' => true, + 'rules.68' => true, + 'rules.69' => true, + 'rules.7' => true, + 'rules.70' => true, + 'rules.71' => true, + 'rules.72' => true, + 'rules.73' => true, + 'rules.74' => true, + 'rules.75' => true, + 'rules.76' => true, + 'rules.77' => true, + 'rules.78' => true, + 'rules.79' => true, + 'rules.8' => true, + 'rules.80' => true, + 'rules.81' => true, + 'rules.82' => true, + 'rules.83' => true, + 'rules.84' => true, + 'rules.85' => true, + 'rules.86' => true, + 'rules.87' => true, + 'rules.88' => true, + 'rules.89' => true, + 'rules.9' => true, + 'rules.90' => true, + 'rules.91' => true, + 'rules.92' => true, + 'rules.93' => true, + 'rules.94' => true, + 'rules.95' => true, + 'rules.96' => true, + 'rules.97' => true, + ], + 'phpstan.typeSpecifier.methodTypeSpecifyingExtension' => ['0242' => true], + 'phpstan.typeSpecifier.staticMethodTypeSpecifyingExtension' => ['0243' => true], + ]; + + protected $types = ['container' => '_HumbugBox96739a27ace4\Nette\DI\Container']; + protected $aliases = []; + + protected $wiring = [ + '_HumbugBox96739a27ace4\Nette\DI\Container' => [['container']], + 'PHPStan\Rules\Rule' => [ + 0 => [ + '092', + '0187', + '0188', + '0189', + '0190', + '0191', + '0192', + '0193', + '0194', + '0195', + '0196', + '0197', + '0198', + '0199', + '0200', + '0201', + '0202', + '0203', + '0204', + '0205', + '0206', + '0207', + '0208', + '0209', + '0210', + '0211', + '0212', + '0213', + '0214', + '0215', + '0216', + '0217', + '0218', + '0219', + '0220', + '0221', + '0222', + '0223', + '0224', + '0225', + '0226', + '0227', + '0228', + '0229', + '0230', + '0231', + '0232', + '0233', + '0234', + '0235', + '0236', + '0237', + '0238', + '0239', + ], + 2 => [ + 'rules.0', + 'rules.1', + 'rules.2', + 'rules.3', + 'rules.4', + 'rules.5', + 'rules.6', + 'rules.7', + 'rules.8', + 'rules.9', + 'rules.10', + 'rules.11', + 'rules.12', + 'rules.13', + 'rules.14', + 'rules.15', + 'rules.16', + 'rules.17', + 'rules.18', + 'rules.19', + 'rules.20', + 'rules.21', + 'rules.22', + 'rules.23', + 'rules.24', + 'rules.25', + 'rules.26', + 'rules.27', + 'rules.28', + 'rules.29', + 'rules.30', + 'rules.31', + 'rules.32', + 'rules.33', + 'rules.34', + 'rules.35', + 'rules.36', + 'rules.37', + 'rules.38', + 'rules.39', + 'rules.40', + 'rules.41', + 'rules.42', + 'rules.43', + 'rules.44', + 'rules.45', + 'rules.46', + 'rules.47', + 'rules.48', + 'rules.49', + 'rules.50', + 'rules.51', + 'rules.52', + 'rules.53', + 'rules.54', + 'rules.55', + 'rules.56', + 'rules.57', + 'rules.58', + 'rules.59', + 'rules.60', + 'rules.61', + 'rules.62', + 'rules.63', + 'rules.64', + 'rules.65', + 'rules.66', + 'rules.67', + 'rules.68', + 'rules.69', + 'rules.70', + 'rules.71', + 'rules.72', + 'rules.73', + 'rules.74', + 'rules.75', + 'rules.76', + 'rules.77', + 'rules.78', + 'rules.79', + 'rules.80', + 'rules.81', + 'rules.82', + 'rules.83', + 'rules.84', + 'rules.85', + 'rules.86', + 'rules.87', + 'rules.88', + 'rules.89', + 'rules.90', + 'rules.91', + 'rules.92', + 'rules.93', + 'rules.94', + 'rules.95', + 'rules.96', + 'rules.97', + ], + ], + 'PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule' => [2 => ['rules.0']], + 'PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule' => [2 => ['rules.1']], + 'PHPStan\Rules\Classes\ClassConstantRule' => [2 => ['rules.2']], + 'PHPStan\Rules\Classes\DuplicateDeclarationRule' => [2 => ['rules.3']], + 'PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule' => [2 => ['rules.4']], + 'PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule' => [2 => ['rules.5']], + 'PHPStan\Rules\Classes\ExistingClassInClassExtendsRule' => [2 => ['rules.6']], + 'PHPStan\Rules\Classes\ExistingClassInTraitUseRule' => [2 => ['rules.7']], + 'PHPStan\Rules\Classes\InstantiationRule' => [2 => ['rules.8']], + 'PHPStan\Rules\Classes\NewStaticRule' => [2 => ['rules.9']], + 'PHPStan\Rules\Exceptions\ThrowExpressionRule' => [2 => ['rules.10']], + 'PHPStan\Rules\Functions\CallToFunctionParametersRule' => [2 => ['rules.11']], + 'PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule' => [2 => ['rules.12']], + 'PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule' => [2 => ['rules.13']], + 'PHPStan\Rules\Functions\ExistingClassesInTypehintsRule' => [2 => ['rules.14']], + 'PHPStan\Rules\Functions\InnerFunctionRule' => [2 => ['rules.15']], + 'PHPStan\Rules\Functions\PrintfParametersRule' => [2 => ['rules.16']], + 'PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule' => [2 => ['rules.17']], + 'PHPStan\Rules\Methods\ExistingClassesInTypehintsRule' => [2 => ['rules.18']], + 'PHPStan\Rules\Methods\MissingMethodImplementationRule' => [2 => ['rules.19']], + 'PHPStan\Rules\Properties\AccessPropertiesInAssignRule' => [2 => ['rules.20']], + 'PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule' => [2 => ['rules.21']], + 'PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule' => [2 => ['rules.22']], + 'PHPStan\Rules\Variables\UnsetRule' => [2 => ['rules.23']], + 'PHPStan\Rules\Classes\UnusedConstructorParametersRule' => [2 => ['rules.24']], + 'PHPStan\Rules\Constants\ConstantRule' => [2 => ['rules.25']], + 'PHPStan\Rules\Functions\UnusedClosureUsesRule' => [2 => ['rules.26']], + 'PHPStan\Rules\Variables\VariableCertaintyInIssetRule' => [2 => ['rules.27']], + 'PHPStan\Rules\Cast\EchoRule' => [2 => ['rules.28']], + 'PHPStan\Rules\Cast\InvalidCastRule' => [2 => ['rules.29']], + 'PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule' => [2 => ['rules.30']], + 'PHPStan\Rules\Cast\PrintRule' => [2 => ['rules.31']], + 'PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule' => [2 => ['rules.32']], + 'PHPStan\Rules\Generics\ClassAncestorsRule' => [2 => ['rules.33']], + 'PHPStan\Rules\Generics\ClassTemplateTypeRule' => [2 => ['rules.34']], + 'PHPStan\Rules\Generics\FunctionTemplateTypeRule' => [2 => ['rules.35']], + 'PHPStan\Rules\Generics\FunctionSignatureVarianceRule' => [2 => ['rules.36']], + 'PHPStan\Rules\Generics\InterfaceAncestorsRule' => [2 => ['rules.37']], + 'PHPStan\Rules\Generics\InterfaceTemplateTypeRule' => [2 => ['rules.38']], + 'PHPStan\Rules\Generics\MethodTemplateTypeRule' => [2 => ['rules.39']], + 'PHPStan\Rules\Generics\MethodSignatureVarianceRule' => [2 => ['rules.40']], + 'PHPStan\Rules\Generics\TraitTemplateTypeRule' => [2 => ['rules.41']], + 'PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule' => [2 => ['rules.42']], + 'PHPStan\Rules\Operators\InvalidBinaryOperationRule' => [2 => ['rules.43']], + 'PHPStan\Rules\Operators\InvalidUnaryOperationRule' => [2 => ['rules.44']], + 'PHPStan\Rules\Operators\InvalidComparisonOperationRule' => [2 => ['rules.45']], + 'PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule' => [2 => ['rules.46']], + 'PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule' => [2 => ['rules.47']], + 'PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule' => [2 => ['rules.48']], + 'PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule' => [2 => ['rules.49']], + 'PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule' => [2 => ['rules.50']], + 'PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule' => [2 => ['rules.51']], + 'PHPStan\Rules\Arrays\AppendedArrayItemTypeRule' => [2 => ['rules.52']], + 'PHPStan\Rules\Arrays\IterableInForeachRule' => [2 => ['rules.53']], + 'PHPStan\Rules\Arrays\OffsetAccessAssignmentRule' => [2 => ['rules.54']], + 'PHPStan\Rules\Arrays\OffsetAccessAssignOpRule' => [2 => ['rules.55']], + 'PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule' => [2 => ['rules.56']], + 'PHPStan\Rules\Arrays\UnpackIterableInArrayRule' => [2 => ['rules.57']], + 'PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule' => [2 => ['rules.58']], + 'PHPStan\Rules\Functions\ClosureReturnTypeRule' => [2 => ['rules.59']], + 'PHPStan\Rules\Generators\YieldTypeRule' => [2 => ['rules.60']], + 'PHPStan\Rules\Methods\ReturnTypeRule' => [2 => ['rules.61']], + 'PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule' => [2 => ['rules.62']], + 'PHPStan\Rules\Properties\TypesAssignedToPropertiesRule' => [2 => ['rules.63']], + 'PHPStan\Rules\Variables\ThrowTypeRule' => [2 => ['rules.64']], + 'PHPStan\Rules\Variables\VariableCloningRule' => [2 => ['rules.65']], + 'PHPStan\Rules\Arrays\DeadForeachRule' => [2 => ['rules.66']], + 'PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule' => [2 => ['rules.67']], + 'PHPStan\Rules\DeadCode\NoopRule' => [2 => ['rules.68']], + 'PHPStan\Rules\DeadCode\UnreachableStatementRule' => [2 => ['rules.69']], + 'PHPStan\Rules\Exceptions\DeadCatchRule' => [2 => ['rules.70']], + 'PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule' => [2 => ['rules.71']], + 'PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule' => [2 => ['rules.72']], + 'PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule' => [2 => ['rules.73']], + 'PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule' => [2 => ['rules.74']], + 'PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule' => [2 => ['rules.75']], + 'PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule' => [2 => ['rules.76']], + 'PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule' => [2 => ['rules.77']], + 'PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule' => [2 => ['rules.78']], + 'PHPStan\Rules\Methods\MissingMethodParameterTypehintRule' => [2 => ['rules.79']], + 'PHPStan\Rules\Methods\MissingMethodReturnTypehintRule' => [2 => ['rules.80']], + 'PHPStan\Rules\Properties\MissingPropertyTypehintRule' => [2 => ['rules.81']], + 'PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule' => [2 => ['rules.82']], + 'PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule' => [2 => ['rules.83']], + 'PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule' => [2 => ['rules.84']], + 'PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule' => [2 => ['rules.85']], + 'PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule' => [2 => ['rules.86']], + 'PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule' => [2 => ['rules.87']], + 'PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule' => [2 => ['rules.88']], + 'PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule' => [2 => ['rules.89']], + 'PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule' => [2 => ['rules.90']], + 'PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule' => [2 => ['rules.91']], + 'PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule' => [2 => ['rules.92']], + 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule' => [2 => ['rules.93']], + 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule' => [2 => ['rules.94']], + 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule' => [2 => ['rules.95']], + 'PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule' => [2 => ['rules.96']], + 'PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule' => [2 => ['rules.97']], + 'PhpParser\BuilderFactory' => [['01']], + 'PHPStan\Parser\LexerFactory' => [['02']], + 'PhpParser\NodeVisitorAbstract' => [['03', '04', '039', '050', '055', '060']], + 'PhpParser\NodeVisitor' => [['03', '04', '039', '050', '055', '060']], + 'PhpParser\NodeVisitor\NameResolver' => [['03']], + 'PhpParser\NodeVisitor\NodeConnectingVisitor' => [['04']], + 'PhpParser\PrettyPrinterAbstract' => [['05']], + 'PhpParser\PrettyPrinter\Standard' => [['05']], + 'PHPStan\Broker\AnonymousClassNameHelper' => [['06']], + 'PHPStan\Php\PhpVersion' => [['07']], + 'PHPStan\Php\PhpVersionFactory' => [['08']], + 'PHPStan\Php\PhpVersionFactoryFactory' => [['09']], + 'PHPStan\PhpDocParser\Lexer\Lexer' => [['010']], + 'PHPStan\PhpDocParser\Parser\TypeParser' => [['011']], + 'PHPStan\PhpDocParser\Parser\ConstExprParser' => [['012']], + 'PHPStan\PhpDocParser\Parser\PhpDocParser' => [['013']], + 'PHPStan\PhpDoc\PhpDocInheritanceResolver' => [['014']], + 'PHPStan\PhpDoc\PhpDocNodeResolver' => [['015']], + 'PHPStan\PhpDoc\PhpDocStringResolver' => [['016']], + 'PHPStan\PhpDoc\ConstExprNodeResolver' => [['017']], + 'PHPStan\PhpDoc\TypeNodeResolverExtension' => [['018', '0240']], + 'PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension' => [['018']], + 'PHPStan\PhpDoc\TypeNodeResolver' => [['019']], + 'PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider' => [['020']], + 'PHPStan\PhpDoc\TypeStringResolver' => [['021']], + 'PHPStan\PhpDoc\StubValidator' => [['022']], + 'PHPStan\Analyser\Analyser' => [['023']], + 'PHPStan\Analyser\FileAnalyser' => [['024']], + 'PHPStan\Analyser\IgnoredErrorHelper' => [['025']], + 'PHPStan\Analyser\ScopeFactory' => [['026']], + 'PHPStan\Analyser\LazyScopeFactory' => [['026']], + 'PHPStan\Analyser\NodeScopeResolver' => [['027']], + 'PHPStan\Analyser\ResultCache\ResultCacheManagerFactory' => [['028']], + 'PHPStan\Analyser\ResultCache\ResultCacheClearer' => [['029']], + 'PHPStan\Cache\Cache' => [['030']], + 'PHPStan\Command\AnalyseApplication' => [['031']], + 'PHPStan\Command\AnalyserRunner' => [['032']], + 'PHPStan\Command\FixerApplication' => [['033']], + 'PHPStan\Command\IgnoredRegexValidator' => [['034']], + 'PHPStan\Dependency\DependencyDumper' => [['035']], + 'PHPStan\Dependency\DependencyResolver' => [['036']], + 'PHPStan\Dependency\ExportedNodeFetcher' => [['037']], + 'PHPStan\Dependency\ExportedNodeResolver' => [['038']], + 'PHPStan\Dependency\ExportedNodeVisitor' => [['039']], + 'PHPStan\DependencyInjection\Container' => [['040'], ['041']], + 'PHPStan\DependencyInjection\Nette\NetteContainer' => [['041']], + 'PHPStan\DependencyInjection\DerivativeContainerFactory' => [['042']], + 'PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider' => [['043']], + 'PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider' => [['044']], + 'PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider' => [['045']], + 'PHPStan\File\FileHelper' => [['046']], + 'PHPStan\File\FileExcluder' => [['047']], + 'PHPStan\File\FileFinder' => [['048']], + 'PHPStan\File\FileMonitor' => [['049']], + 'PHPStan\NodeVisitor\StatementOrderVisitor' => [['050']], + 'PHPStan\Parallel\ParallelAnalyser' => [['051']], + 'PHPStan\Parallel\Scheduler' => [['052']], + 'PHPStan\Parser\Parser' => [ + 0 => ['053'], + 2 => [1 => 'currentPhpVersionRichParser', 'currentPhpVersionSimpleParser', 'php8Parser', 'pathRoutingParser'], + ], + 'PHPStan\Parser\CachedParser' => [['053']], + 'PHPStan\Parser\FunctionCallStatementFinder' => [['054']], + 'PHPStan\Parser\NodeChildrenVisitor' => [['055']], + 'PHPStan\Process\CpuCoreCounter' => [['056']], + 'PHPStan\Reflection\FunctionReflectionFactory' => [['057']], + 'PHPStan\Reflection\MethodsClassReflectionExtension' => [['058', '069', '071']], + 'PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension' => [['058']], + 'PHPStan\Reflection\PropertiesClassReflectionExtension' => [['059', '070', '071', '073', '0137']], + 'PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension' => [['059']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor' => [['060']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher' => [['061']], + '_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\SourceLocator' => [ + 0 => ['062'], + 2 => [1 => 'betterReflectionSourceLocator', 'stubSourceLocator'], + ], + 'PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator' => [['062']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker' => [['063']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory' => [['064']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository' => [['065']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory' => [['066']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory' => [['067']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository' => [['068']], + 'PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension' => [['069']], + 'PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension' => [['070']], + 'PHPStan\Reflection\Php\PhpClassReflectionExtension' => [['071']], + 'PHPStan\Reflection\Php\PhpMethodReflectionFactory' => [['072']], + 'PHPStan\Reflection\BrokerAwareExtension' => [['073', '0178']], + 'PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension' => [['073']], + 'PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider' => [['074']], + 'PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider' => [['075']], + 'PHPStan\Reflection\SignatureMap\SignatureMapParser' => [['076']], + 'PHPStan\Reflection\SignatureMap\SignatureMapProvider' => [['080'], ['077', '078']], + 'PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider' => [['077']], + 'PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider' => [['078']], + 'PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory' => [['079']], + 'PHPStan\Rules\ClassCaseSensitivityCheck' => [['081']], + 'PHPStan\Rules\Comparison\ConstantConditionRuleHelper' => [['082']], + 'PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper' => [['083']], + 'PHPStan\Rules\FunctionCallParametersCheck' => [['084']], + 'PHPStan\Rules\FunctionDefinitionCheck' => [['085']], + 'PHPStan\Rules\FunctionReturnTypeCheck' => [['086']], + 'PHPStan\Rules\Generics\GenericAncestorsCheck' => [['087']], + 'PHPStan\Rules\Generics\GenericObjectTypeCheck' => [['088']], + 'PHPStan\Rules\Generics\TemplateTypeCheck' => [['089']], + 'PHPStan\Rules\Generics\VarianceCheck' => [['090']], + 'PHPStan\Rules\IssetCheck' => [['091']], + 'PHPStan\Rules\Methods\MethodSignatureRule' => [['092']], + 'PHPStan\Rules\MissingTypehintCheck' => [['093']], + 'PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider' => [['094']], + 'PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider' => [['094']], + 'PHPStan\Rules\Properties\PropertyDescriptor' => [['095']], + 'PHPStan\Rules\Properties\PropertyReflectionFinder' => [['096']], + 'PHPStan\Rules\RegistryFactory' => [['097']], + 'PHPStan\Rules\RuleLevelHelper' => [['098']], + 'PHPStan\Rules\UnusedFunctionParametersCheck' => [['099']], + 'PHPStan\Type\FileTypeMapper' => [['0100']], + 'PHPStan\Type\DynamicFunctionReturnTypeExtension' => [ + [ + '0101', + '0102', + '0103', + '0104', + '0105', + '0107', + '0108', + '0109', + '0110', + '0111', + '0112', + '0113', + '0114', + '0115', + '0116', + '0117', + '0118', + '0119', + '0123', + '0125', + '0126', + '0128', + '0129', + '0130', + '0131', + '0132', + '0133', + '0134', + '0135', + '0136', + '0138', + '0141', + '0142', + '0143', + '0144', + '0145', + '0146', + '0147', + '0148', + '0149', + '0150', + '0151', + '0152', + '0153', + '0154', + '0155', + '0156', + '0177', + '0178', + '0180', + '0181', + '0182', + ], + ], + 'PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension' => [['0101']], + 'PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension' => [['0102']], + 'PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension' => [['0103']], + 'PHPStan\Type\Php\ArrayFilterFunctionReturnTypeReturnTypeExtension' => [['0104']], + 'PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension' => [['0105']], + 'PHPStan\Type\FunctionTypeSpecifyingExtension' => [ + [ + '0106', + '0124', + '0139', + '0140', + '0157', + '0158', + '0159', + '0160', + '0161', + '0162', + '0163', + '0164', + '0165', + '0166', + '0167', + '0168', + '0169', + '0170', + '0171', + '0172', + '0173', + '0174', + '0175', + '0176', + '0241', + ], + ], + 'PHPStan\Analyser\TypeSpecifierAwareExtension' => [ + [ + '0106', + '0124', + '0139', + '0140', + '0157', + '0158', + '0159', + '0160', + '0161', + '0162', + '0163', + '0164', + '0165', + '0166', + '0167', + '0168', + '0169', + '0170', + '0171', + '0172', + '0173', + '0174', + '0175', + '0176', + '0178', + '0241', + '0242', + '0243', + ], + ], + 'PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension' => [['0106']], + 'PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension' => [['0107']], + 'PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension' => [['0108']], + 'PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension' => [['0109']], + 'PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension' => [['0110']], + 'PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension' => [['0111']], + 'PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension' => [['0112']], + 'PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension' => [['0113']], + 'PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension' => [['0114']], + 'PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension' => [['0115']], + 'PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension' => [['0116']], + 'PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension' => [['0117']], + 'PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension' => [['0118']], + 'PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension' => [['0119']], + 'PHPStan\Type\DynamicStaticMethodReturnTypeExtension' => [['0120', '0122']], + 'PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension' => [['0120']], + 'PHPStan\Type\DynamicMethodReturnTypeExtension' => [['0121', '0127', '0138', '0179', '0244', '0245', '0246']], + 'PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension' => [['0121']], + 'PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension' => [['0122']], + 'PHPStan\Type\Php\CountFunctionReturnTypeExtension' => [['0123']], + 'PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension' => [['0124']], + 'PHPStan\Type\Php\CurlInitReturnTypeExtension' => [['0125']], + 'PHPStan\Type\Php\DateFunctionReturnTypeExtension' => [['0126']], + 'PHPStan\Type\Php\DsMapDynamicReturnTypeExtension' => [['0127']], + 'PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension' => [['0128']], + 'PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension' => [['0129']], + 'PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension' => [['0130']], + 'PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension' => [['0131']], + 'PHPStan\Type\Php\GetClassDynamicReturnTypeExtension' => [['0132']], + 'PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension' => [['0133']], + 'PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension' => [['0134']], + 'PHPStan\Type\Php\HashHmacFunctionsReturnTypeExtension' => [['0135']], + 'PHPStan\Type\Php\HashFunctionsReturnTypeExtension' => [['0136']], + 'PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension' => [['0137']], + 'PHPStan\Type\Php\StatDynamicReturnTypeExtension' => [['0138']], + 'PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension' => [['0139']], + 'PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension' => [['0140']], + 'PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension' => [['0141']], + 'PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension' => [['0142']], + 'PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension' => [['0143']], + 'PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension' => [['0144']], + 'PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension' => [['0145']], + 'PHPStan\Type\Php\VarExportFunctionDynamicReturnTypeExtension' => [['0146']], + 'PHPStan\Type\Php\MbFunctionsReturnTypeExtension' => [['0147']], + 'PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension' => [['0148']], + 'PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension' => [['0149']], + 'PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension' => [['0150']], + 'PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension' => [['0151']], + 'PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension' => [['0152']], + 'PHPStan\Type\Php\PowFunctionReturnTypeExtension' => [['0153']], + 'PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension' => [['0154']], + 'PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension' => [['0155']], + 'PHPStan\Type\Php\RangeFunctionReturnTypeExtension' => [['0156']], + 'PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension' => [['0157']], + 'PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension' => [['0158']], + 'PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension' => [['0159']], + 'PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension' => [['0160']], + 'PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension' => [['0161']], + 'PHPStan\Type\Php\IsIntFunctionTypeSpecifyingExtension' => [['0162']], + 'PHPStan\Type\Php\IsFloatFunctionTypeSpecifyingExtension' => [['0163']], + 'PHPStan\Type\Php\IsNullFunctionTypeSpecifyingExtension' => [['0164']], + 'PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension' => [['0165']], + 'PHPStan\Type\Php\IsBoolFunctionTypeSpecifyingExtension' => [['0166']], + 'PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension' => [['0167']], + 'PHPStan\Type\Php\IsCountableFunctionTypeSpecifyingExtension' => [['0168']], + 'PHPStan\Type\Php\IsResourceFunctionTypeSpecifyingExtension' => [['0169']], + 'PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension' => [['0170']], + 'PHPStan\Type\Php\IsStringFunctionTypeSpecifyingExtension' => [['0171']], + 'PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension' => [['0172']], + 'PHPStan\Type\Php\IsObjectFunctionTypeSpecifyingExtension' => [['0173']], + 'PHPStan\Type\Php\IsNumericFunctionTypeSpecifyingExtension' => [['0174']], + 'PHPStan\Type\Php\IsScalarFunctionTypeSpecifyingExtension' => [['0175']], + 'PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension' => [['0176']], + 'PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension' => [['0177']], + 'PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension' => [['0178']], + 'PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension' => [['0179']], + 'PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension' => [['0180']], + 'PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension' => [['0181']], + 'PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension' => [['0182']], + 'PHPStan\Analyser\TypeSpecifier' => [['typeSpecifier']], + 'PHPStan\Analyser\TypeSpecifierFactory' => [['typeSpecifierFactory']], + 'PHPStan\File\RelativePathHelper' => [ + 0 => ['relativePathHelper'], + 2 => [1 => 'simpleRelativePathHelper', 'parentDirectoryRelativePathHelper'], + ], + 'PHPStan\File\ParentDirectoryRelativePathHelper' => [2 => ['parentDirectoryRelativePathHelper']], + 'PHPStan\Reflection\ReflectionProvider' => [ + ['reflectionProvider'], + ['broker', 'innerRuntimeReflectionProvider'], + [2 => 'betterReflectionProvider', 3 => 'runtimeReflectionProvider', 5 => 'stubBetterReflectionProvider'], + ], + 'PHPStan\Broker\Broker' => [['broker']], + 'PHPStan\Broker\BrokerFactory' => [['brokerFactory']], + 'PHPStan\Cache\CacheStorage' => [2 => ['cacheStorage']], + 'PHPStan\Cache\FileCacheStorage' => [2 => ['cacheStorage']], + 'PHPStan\Parser\RichParser' => [2 => ['currentPhpVersionRichParser']], + 'PHPStan\Parser\SimpleParser' => [2 => ['currentPhpVersionSimpleParser', 'php8Parser']], + 'PhpParser\Parser' => [0 => ['phpParserDecorator'], 2 => [1 => 'currentPhpVersionPhpParser', 'php8PhpParser']], + 'PHPStan\Parser\PhpParserDecorator' => [['phpParserDecorator']], + 'PhpParser\Lexer' => [2 => ['currentPhpVersionLexer', 'php8Lexer']], + 'PhpParser\ParserAbstract' => [2 => ['currentPhpVersionPhpParser', 'php8PhpParser']], + 'PhpParser\Parser\Php7' => [2 => ['currentPhpVersionPhpParser', 'php8PhpParser']], + 'PHPStan\Rules\Registry' => [['registry']], + 'PHPStan\PhpDoc\StubPhpDocProvider' => [['stubPhpDocProvider']], + 'PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory' => [['reflectionProviderFactory']], + 'PHPStan\Reflection\BetterReflection\BetterReflectionProvider' => [ + 0 => ['reflectionProvider'], + 2 => [1 => 'betterReflectionProvider', 'stubBetterReflectionProvider'], + ], + '_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector' => [ + 2 => ['betterReflectionClassReflector', 'nodeScopeResolverClassReflector', 'stubClassReflector'], + ], + '_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\Reflector' => [ + 2 => [ + 'betterReflectionClassReflector', + 'nodeScopeResolverClassReflector', + 'betterReflectionFunctionReflector', + 'betterReflectionConstantReflector', + 'stubClassReflector', + 'stubFunctionReflector', + 'stubConstantReflector', + ], + ], + 'PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector' => [ + 2 => ['betterReflectionClassReflector'], + ], + '_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector' => [ + 2 => ['betterReflectionFunctionReflector', 'stubFunctionReflector'], + ], + 'PHPStan\Reflection\BetterReflection\Reflector\MemoizingFunctionReflector' => [ + 2 => ['betterReflectionFunctionReflector'], + ], + '_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector' => [ + 2 => ['betterReflectionConstantReflector', 'stubConstantReflector'], + ], + 'PHPStan\Reflection\BetterReflection\Reflector\MemoizingConstantReflector' => [ + 2 => ['betterReflectionConstantReflector'], + ], + 'Hoa\Compiler\Llk\Parser' => [['regexParser']], + 'Hoa\File\File' => [['regexGrammarStream']], + 'Hoa\File\Generic' => [['regexGrammarStream']], + 'Hoa\Stream\Stream' => [['regexGrammarStream']], + 'Hoa\Stream\IStream\Stream' => [['regexGrammarStream']], + 'Hoa\Event\Listenable' => [['regexGrammarStream']], + 'Hoa\Event\Source' => [['regexGrammarStream']], + 'Hoa\Stream\IStream\Pathable' => [['regexGrammarStream']], + 'Hoa\Stream\IStream\Statable' => [['regexGrammarStream']], + 'Hoa\Stream\IStream\Touchable' => [['regexGrammarStream']], + 'Hoa\Stream\IStream\Bufferable' => [['regexGrammarStream']], + 'Hoa\Stream\IStream\Lockable' => [['regexGrammarStream']], + 'Hoa\Stream\IStream\Pointable' => [['regexGrammarStream']], + 'Hoa\Stream\IStream\In' => [['regexGrammarStream']], + 'Hoa\File\Read' => [['regexGrammarStream']], + 'PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider' => [2 => ['runtimeReflectionProvider']], + 'PHPStan\Reflection\Runtime\RuntimeReflectionProvider' => [['innerRuntimeReflectionProvider']], + 'PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory' => [['0183']], + 'PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory' => [['0184']], + '_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\SourceStubber' => [ + 1 => ['0185', '0186'], + ], + '_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber' => [ + ['0185'], + ], + '_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber' => [['0186']], + 'PhpParser\Lexer\Emulative' => [2 => ['php8Lexer']], + 'PHPStan\Parser\PathRoutingParser' => [2 => ['pathRoutingParser']], + 'PHPStan\Command\ErrorFormatter\ErrorFormatter' => [ + [ + 'errorFormatter.raw', + 'errorFormatter.baselineNeon', + 'errorFormatter.table', + 'errorFormatter.checkstyle', + 'errorFormatter.json', + 'errorFormatter.junit', + 'errorFormatter.prettyJson', + 'errorFormatter.gitlab', + 'errorFormatter.github', + 'errorFormatter.teamcity', + ], + ], + 'PHPStan\Command\ErrorFormatter\RawErrorFormatter' => [['errorFormatter.raw']], + 'PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter' => [['errorFormatter.baselineNeon']], + 'PHPStan\Command\ErrorFormatter\TableErrorFormatter' => [['errorFormatter.table']], + 'PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter' => [['errorFormatter.checkstyle']], + 'PHPStan\Command\ErrorFormatter\JsonErrorFormatter' => [['errorFormatter.json', 'errorFormatter.prettyJson']], + 'PHPStan\Command\ErrorFormatter\JunitErrorFormatter' => [['errorFormatter.junit']], + 'PHPStan\Command\ErrorFormatter\GitlabErrorFormatter' => [['errorFormatter.gitlab']], + 'PHPStan\Command\ErrorFormatter\GithubErrorFormatter' => [['errorFormatter.github']], + 'PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter' => [['errorFormatter.teamcity']], + 'PHPStan\Rules\Classes\ExistingClassInInstanceOfRule' => [['0187']], + 'PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule' => [['0188']], + 'PHPStan\Rules\Functions\CallToNonExistentFunctionRule' => [['0189']], + 'PHPStan\Rules\Functions\ClosureUsesThisRule' => [['0190']], + 'PHPStan\Rules\Methods\CallMethodsRule' => [['0191']], + 'PHPStan\Rules\Methods\CallStaticMethodsRule' => [['0192']], + 'PHPStan\Rules\Methods\OverridingMethodRule' => [['0193']], + 'PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule' => [['0194']], + 'PHPStan\Rules\Missing\MissingReturnRule' => [['0195']], + 'PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule' => [['0196']], + 'PHPStan\Rules\Namespaces\ExistingNamesInUseRule' => [['0197']], + 'PHPStan\Rules\Operators\InvalidIncDecOperationRule' => [['0198']], + 'PHPStan\Rules\Properties\AccessPropertiesRule' => [['0199']], + 'PHPStan\Rules\Properties\AccessStaticPropertiesRule' => [['0200']], + 'PHPStan\Rules\Properties\ExistingClassesInPropertiesRule' => [['0201']], + 'PHPStan\Rules\Properties\UninitializedPropertyRule' => [['0202']], + 'PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule' => [['0203']], + 'PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule' => [['0204']], + 'PHPStan\Rules\Variables\CompactVariablesRule' => [['0205']], + 'PHPStan\Rules\Variables\DefinedVariableRule' => [['0206']], + 'PHPStan\Rules\Regexp\RegularExpressionPatternRule' => [['0207']], + 'PHPStan\Rules\Whitespace\FileWhitespaceRule' => [['0208']], + 'PHPStan\Rules\Variables\VariableCertaintyNullCoalesceRule' => [['0209']], + 'PHPStan\Rules\Classes\MixinRule' => [['0210']], + 'PHPStan\Rules\Functions\CallCallablesRule' => [['0211']], + 'PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule' => [['0212']], + 'PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule' => [['0213']], + 'PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule' => [['0214']], + 'PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule' => [['0215']], + 'PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule' => [['0216']], + 'PHPStan\Rules\Functions\ReturnTypeRule' => [['0217']], + 'PHPStan\Rules\Generators\YieldFromTypeRule' => [['0218']], + 'PHPStan\Rules\Generators\YieldInGeneratorRule' => [['0219']], + 'PHPStan\Rules\Classes\ImpossibleInstanceOfRule' => [['0220']], + 'PHPStan\Rules\Comparison\BooleanAndConstantConditionRule' => [['0221']], + 'PHPStan\Rules\Comparison\BooleanOrConstantConditionRule' => [['0222']], + 'PHPStan\Rules\Comparison\BooleanNotConstantConditionRule' => [['0223']], + 'PHPStan\Rules\DeadCode\UnusedPrivateConstantRule' => [['0224']], + 'PHPStan\Rules\DeadCode\UnusedPrivateMethodRule' => [['0225']], + 'PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule' => [['0226']], + 'PHPStan\Rules\Comparison\ElseIfConstantConditionRule' => [['0227']], + 'PHPStan\Rules\Comparison\IfConstantConditionRule' => [['0228']], + 'PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule' => [['0229']], + 'PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule' => [['0230']], + 'PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule' => [['0231']], + 'PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule' => [['0232']], + 'PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule' => [['0233']], + 'PHPStan\Rules\Comparison\UnreachableIfBranchesRule' => [['0234']], + 'PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule' => [['0235']], + 'PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule' => [['0236']], + 'PHPStan\Rules\Variables\IssetRule' => [['0237']], + 'PHPStan\Rules\Variables\NullCoalesceRule' => [['0238']], + 'PHPStan\Rules\Functions\RandomIntParametersRule' => [['0239']], + 'PHPStan\PhpDoc\TypeNodeResolverAwareExtension' => [['0240']], + 'PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension' => [['0240']], + 'PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension' => [['0241']], + 'PHPStan\Type\MethodTypeSpecifyingExtension' => [['0242']], + 'PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension' => [['0242']], + 'PHPStan\Type\StaticMethodTypeSpecifyingExtension' => [['0243']], + 'PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension' => [['0243']], + 'PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension' => [['0244']], + 'PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension' => [['0245']], + 'PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension' => [['0246']], + 'PHPStan\Rules\Deprecations\DeprecatedClassHelper' => [['0247']], + 'PHPStan\PhpDoc\StubSourceLocatorFactory' => [['0248']], + ]; + + + public function __construct(array $params = []) + { + parent::__construct($params); + $this->parameters += [ + 'bootstrap' => null, + 'bootstrapFiles' => [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/runtime/ReflectionUnionType.php', + ], + 'excludes_analyse' => [], + 'autoload_directories' => [], + 'autoload_files' => [], + 'level' => 'max', + 'paths' => ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], + 'featureToggles' => [ + 'bleedingEdge' => false, + 'disableRuntimeReflectionProvider' => false, + 'closureUsesThis' => false, + 'randomIntParameters' => false, + 'nullCoalesce' => false, + 'fileWhitespace' => false, + 'unusedClassElements' => false, + 'readComposerPhpVersion' => false, + ], + 'fileExtensions' => ['php'], + 'checkAlwaysTrueCheckTypeFunctionCall' => false, + 'checkAlwaysTrueInstanceof' => false, + 'checkAlwaysTrueStrictComparison' => false, + 'checkClassCaseSensitivity' => true, + 'checkExplicitMixed' => false, + 'checkFunctionArgumentTypes' => true, + 'checkFunctionNameCase' => false, + 'checkGenericClassInNonGenericObjectType' => true, + 'checkInternalClassCaseSensitivity' => false, + 'checkMissingIterableValueType' => true, + 'checkMissingVarTagTypehint' => true, + 'checkArgumentsPassedByReference' => true, + 'checkMaybeUndefinedVariables' => true, + 'checkNullables' => true, + 'checkThisOnly' => false, + 'checkUnionTypes' => true, + 'checkExplicitMixedMissingReturn' => false, + 'checkPhpDocMissingReturn' => true, + 'checkPhpDocMethodSignatures' => true, + 'checkExtraArguments' => true, + 'checkMissingClosureNativeReturnTypehintRule' => false, + 'checkMissingTypehints' => true, + 'checkTooWideReturnTypesInProtectedAndPublicMethods' => false, + 'checkUninitializedProperties' => false, + 'inferPrivatePropertyTypeFromConstructor' => false, + 'reportMaybes' => true, + 'reportMaybesInMethodSignatures' => false, + 'reportStaticMethodSignatures' => false, + 'mixinExcludeClasses' => [], + 'scanFiles' => [], + 'scanDirectories' => [], + 'parallel' => [ + 'jobSize' => 20, + 'processTimeout' => 60.0, + 'maximumNumberOfProcesses' => 32, + 'minimumNumberOfJobsPerProcess' => 2, + 'buffer' => 134217728, + ], + 'phpVersion' => null, + 'polluteScopeWithLoopInitialAssignments' => true, + 'polluteScopeWithAlwaysIterableForeach' => true, + 'polluteCatchScopeWithTryAssignments' => false, + 'propertyAlwaysWrittenTags' => [], + 'propertyAlwaysReadTags' => [], + 'additionalConstructors' => ['PHPUnit\Framework\TestCase::setUp'], + 'treatPhpDocTypesAsCertain' => true, + 'tipsOfTheDay' => true, + 'reportMagicMethods' => true, + 'reportMagicProperties' => true, + 'ignoreErrors' => [], + 'internalErrorsCountLimit' => 50, + 'cache' => ['nodesByFileCountMax' => 1024, 'nodesByStringCountMax' => 1024], + 'reportUnmatchedIgnoredErrors' => true, + 'scopeClass' => 'PHPStan\Analyser\MutatingScope', + 'typeAliases' => [], + 'universalObjectCratesClasses' => ['stdClass'], + 'stubFiles' => [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', + ], + 'earlyTerminatingMethodCalls' => ['PHPUnit\Framework\Assert' => ['fail', 'markTestIncomplete', 'markTestSkipped']], + 'earlyTerminatingFunctionCalls' => [], + 'memoryLimitFile' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/.memory_limit', + 'tempResultCachePath' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCaches', + 'staticReflectionClassNamePatterns' => ['#^PhpParser\\\#', '#^PHPStan\\\#', '#^Hoa\\\#'], + 'dynamicConstantNames' => [ + 'ICONV_IMPL', + 'LIBXML_VERSION', + 'LIBXML_DOTTED_VERSION', + 'PHP_VERSION', + 'PHP_MAJOR_VERSION', + 'PHP_MINOR_VERSION', + 'PHP_RELEASE_VERSION', + 'PHP_VERSION_ID', + 'PHP_EXTRA_VERSION', + 'PHP_ZTS', + 'PHP_DEBUG', + 'PHP_MAXPATHLEN', + 'PHP_OS', + 'PHP_OS_FAMILY', + 'PHP_SAPI', + 'PHP_EOL', + 'PHP_INT_MAX', + 'PHP_INT_MIN', + 'PHP_INT_SIZE', + 'PHP_FLOAT_DIG', + 'PHP_FLOAT_EPSILON', + 'PHP_FLOAT_MIN', + 'PHP_FLOAT_MAX', + 'DEFAULT_INCLUDE_PATH', + 'PEAR_INSTALL_DIR', + 'PEAR_EXTENSION_DIR', + 'PHP_EXTENSION_DIR', + 'PHP_PREFIX', + 'PHP_BINDIR', + 'PHP_BINARY', + 'PHP_MANDIR', + 'PHP_LIBDIR', + 'PHP_DATADIR', + 'PHP_SYSCONFDIR', + 'PHP_LOCALSTATEDIR', + 'PHP_CONFIG_FILE_PATH', + 'PHP_CONFIG_FILE_SCAN_DIR', + 'PHP_SHLIB_SUFFIX', + 'PHP_FD_SETSIZE', + ], + 'customRulesetUsed' => false, + 'missingClosureNativeReturnCheckObjectTypehint' => false, + 'tmpDir' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data', + 'debugMode' => true, + 'productionMode' => false, + 'tempDir' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data', + 'rootDir' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan', + 'currentWorkingDirectory' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + 'cliArgumentsVariablesRegistered' => true, + 'additionalConfigFiles' => [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.levelmax.neon', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/../../conf/config.stubValidator.neon', + ], + 'analysedPaths' => ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], + 'composerAutoloaderProjectPaths' => [ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + ], + 'analysedPathsFromConfig' => [], + 'allCustomConfigFiles' => [ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon', + ], + 'usedLevel' => 'max', + 'cliAutoloadFile' => null, + 'fixerTmpDir' => '/tmp/phpstan-fixer', + 'singleReflectionFile' => null, + '__parametersSchema' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ + 'bootstrap' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string|null', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'bootstrapFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'excludes_analyse' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'autoload_directories' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'autoload_files' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'level' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\AnyOf', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00set" => [ + \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00castTo" => null, + ]), + 'paths' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'featureToggles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ + 'bleedingEdge' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'disableRuntimeReflectionProvider' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'closureUsesThis' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'randomIntParameters' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'nullCoalesce' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'fileWhitespace' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'unusedClassElements' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'readComposerPhpVersion' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', + ]), + 'fileExtensions' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkAlwaysTrueCheckTypeFunctionCall' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkAlwaysTrueInstanceof' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkAlwaysTrueStrictComparison' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkClassCaseSensitivity' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkExplicitMixed' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkFunctionArgumentTypes' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkFunctionNameCase' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkGenericClassInNonGenericObjectType' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkInternalClassCaseSensitivity' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkMissingIterableValueType' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkMissingVarTagTypehint' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkArgumentsPassedByReference' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkMaybeUndefinedVariables' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkNullables' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkThisOnly' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkUnionTypes' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkExplicitMixedMissingReturn' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkPhpDocMissingReturn' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkPhpDocMethodSignatures' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkExtraArguments' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkMissingClosureNativeReturnTypehintRule' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkMissingTypehints' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkTooWideReturnTypesInProtectedAndPublicMethods' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'checkUninitializedProperties' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'inferPrivatePropertyTypeFromConstructor' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'tipsOfTheDay' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'reportMaybes' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'reportMaybesInMethodSignatures' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'reportStaticMethodSignatures' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'parallel' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ + 'jobSize' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'processTimeout' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'float', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'maximumNumberOfProcesses' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'minimumNumberOfJobsPerProcess' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'buffer' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', + ]), + 'phpVersion' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\AnyOf', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00set" => [ + \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [70100.0, 80000.0], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00castTo" => null, + ]), + 'polluteScopeWithLoopInitialAssignments' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'polluteScopeWithAlwaysIterableForeach' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'polluteCatchScopeWithTryAssignments' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'propertyAlwaysWrittenTags' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'propertyAlwaysReadTags' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'additionalConstructors' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'treatPhpDocTypesAsCertain' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'reportMagicMethods' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'reportMagicProperties' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'ignoreErrors' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\AnyOf', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00set" => [ + \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ + 'message' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ + null, + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'path' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ + null, + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', + ]), + \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ + 'message' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ + null, + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'count' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ + null, + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'path' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ + null, + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', + ]), + \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ + 'message' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ + null, + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'paths' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ + null, + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ + null, + null, + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', + ]), + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'internalErrorsCountLimit' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'cache' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ + 'nodesByFileCountMax' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'nodesByStringCountMax' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', + ]), + 'reportUnmatchedIgnoredErrors' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'scopeClass' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'typeAliases' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'array', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'universalObjectCratesClasses' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'stubFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'earlyTerminatingMethodCalls' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'array', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'earlyTerminatingFunctionCalls' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'memoryLimitFile' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'tempResultCachePath' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'staticReflectionClassNamePatterns' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'dynamicConstantNames' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'customRulesetUsed' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'rootDir' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'tmpDir' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'currentWorkingDirectory' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'cliArgumentsVariablesRegistered' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'mixinExcludeClasses' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'scanFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'scanDirectories' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'fixerTmpDir' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'debugMode' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'productionMode' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'tempDir' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'additionalConfigFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'allCustomConfigFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'analysedPaths' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'composerAutoloaderProjectPaths' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'analysedPathsFromConfig' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'usedLevel' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'cliAutoloadFile' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string|null', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'singleReflectionFile' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string|null', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + 'missingClosureNativeReturnCheckObjectTypehint' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + '__parametersSchema' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => '_HumbugBox96739a27ace4\Nette\Schema\Schema', + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, + ]), + ], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], + "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', + ]), + ]; + } + + + public function createService01(): PhpParser\BuilderFactory + { + return new PhpParser\BuilderFactory; + } + + + public function createService02(): PHPStan\Parser\LexerFactory + { + return new PHPStan\Parser\LexerFactory($this->getService('07')); + } + + + public function createService03(): PhpParser\NodeVisitor\NameResolver + { + return new PhpParser\NodeVisitor\NameResolver; + } + + + public function createService04(): PhpParser\NodeVisitor\NodeConnectingVisitor + { + return new PhpParser\NodeVisitor\NodeConnectingVisitor; + } + + + public function createService05(): PhpParser\PrettyPrinter\Standard + { + return new PhpParser\PrettyPrinter\Standard; + } + + + public function createService06(): PHPStan\Broker\AnonymousClassNameHelper + { + return new PHPStan\Broker\AnonymousClassNameHelper($this->getService('046'), $this->getService('simpleRelativePathHelper')); + } + + + public function createService07(): PHPStan\Php\PhpVersion + { + return $this->getService('08')->create(); + } + + + public function createService08(): PHPStan\Php\PhpVersionFactory + { + return $this->getService('09')->create(); + } + + + public function createService09(): PHPStan\Php\PhpVersionFactoryFactory + { + return new PHPStan\Php\PhpVersionFactoryFactory( + null, + false, + [ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + ] + ); + } + + + public function createService010(): PHPStan\PhpDocParser\Lexer\Lexer + { + return new PHPStan\PhpDocParser\Lexer\Lexer; + } + + + public function createService011(): PHPStan\PhpDocParser\Parser\TypeParser + { + return new PHPStan\PhpDocParser\Parser\TypeParser($this->getService('012')); + } + + + public function createService012(): PHPStan\PhpDocParser\Parser\ConstExprParser + { + return new PHPStan\PhpDocParser\Parser\ConstExprParser; + } + + + public function createService013(): PHPStan\PhpDocParser\Parser\PhpDocParser + { + return new PHPStan\PhpDocParser\Parser\PhpDocParser($this->getService('011'), $this->getService('012')); + } + + + public function createService014(): PHPStan\PhpDoc\PhpDocInheritanceResolver + { + return new PHPStan\PhpDoc\PhpDocInheritanceResolver($this->getService('0100')); + } + + + public function createService015(): PHPStan\PhpDoc\PhpDocNodeResolver + { + return new PHPStan\PhpDoc\PhpDocNodeResolver($this->getService('019'), $this->getService('017')); + } + + + public function createService016(): PHPStan\PhpDoc\PhpDocStringResolver + { + return new PHPStan\PhpDoc\PhpDocStringResolver($this->getService('010'), $this->getService('013')); + } + + + public function createService017(): PHPStan\PhpDoc\ConstExprNodeResolver + { + return new PHPStan\PhpDoc\ConstExprNodeResolver; + } + + + public function createService018(): PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension + { + return new PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension( + $this->getService('021'), + $this->getService('reflectionProvider'), + [] + ); + } + + + public function createService019(): PHPStan\PhpDoc\TypeNodeResolver + { + return new PHPStan\PhpDoc\TypeNodeResolver($this->getService('020'), $this->getService('040')); + } + + + public function createService020(): PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider + { + return new PHPStan\PhpDoc\LazyTypeNodeResolverExtensionRegistryProvider($this->getService('040')); + } + + + public function createService021(): PHPStan\PhpDoc\TypeStringResolver + { + return new PHPStan\PhpDoc\TypeStringResolver($this->getService('010'), $this->getService('011'), $this->getService('019')); + } + + + public function createService022(): PHPStan\PhpDoc\StubValidator + { + return new PHPStan\PhpDoc\StubValidator( + [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', + ], + $this->getService('042') + ); + } + + + public function createService023(): PHPStan\Analyser\Analyser + { + return new PHPStan\Analyser\Analyser($this->getService('024'), $this->getService('registry'), $this->getService('027'), 50); + } + + + public function createService024(): PHPStan\Analyser\FileAnalyser + { + return new PHPStan\Analyser\FileAnalyser( + $this->getService('026'), + $this->getService('027'), + $this->getService('053'), + $this->getService('036'), + true + ); + } + + + public function createService025(): PHPStan\Analyser\IgnoredErrorHelper + { + return new PHPStan\Analyser\IgnoredErrorHelper($this->getService('034'), $this->getService('046'), [], true); + } + + + public function createService026(): PHPStan\Analyser\LazyScopeFactory + { + return new PHPStan\Analyser\LazyScopeFactory('PHPStan\Analyser\MutatingScope', $this->getService('040')); + } + + + public function createService027(): PHPStan\Analyser\NodeScopeResolver + { + return new PHPStan\Analyser\NodeScopeResolver( + $this->getService('reflectionProvider'), + $this->getService('nodeScopeResolverClassReflector'), + $this->getService('043'), + $this->getService('053'), + $this->getService('0100'), + $this->getService('07'), + $this->getService('014'), + $this->getService('046'), + $this->getService('typeSpecifier'), + true, + false, + true, + ['PHPUnit\Framework\Assert' => ['fail', 'markTestIncomplete', 'markTestSkipped']], + [] + ); + } + + + public function createService028(): PHPStan\Analyser\ResultCache\ResultCacheManagerFactory + { + return new class ($this) implements PHPStan\Analyser\ResultCache\ResultCacheManagerFactory { + private $container; + + + public function __construct(Container_e563100465 $container) + { + $this->container = $container; + } + + + public function create(array $fileReplacements): PHPStan\Analyser\ResultCache\ResultCacheManager + { + return new PHPStan\Analyser\ResultCache\ResultCacheManager( + $this->container->getService('037'), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCache.php', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCaches', + [ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon', + ], + ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], + [ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + ], + [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', + ], + 'max', + null, + $fileReplacements + ); + } + }; + } + + + public function createService029(): PHPStan\Analyser\ResultCache\ResultCacheClearer + { + return new PHPStan\Analyser\ResultCache\ResultCacheClearer( + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCache.php', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCaches' + ); + } + + + public function createService030(): PHPStan\Cache\Cache + { + return new PHPStan\Cache\Cache($this->getService('cacheStorage')); + } + + + public function createService031(): PHPStan\Command\AnalyseApplication + { + return new PHPStan\Command\AnalyseApplication( + $this->getService('032'), + $this->getService('022'), + $this->getService('028'), + $this->getService('025'), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/.memory_limit', + 50 + ); + } + + + public function createService032(): PHPStan\Command\AnalyserRunner + { + return new PHPStan\Command\AnalyserRunner( + $this->getService('052'), + $this->getService('023'), + $this->getService('051'), + $this->getService('056') + ); + } + + + public function createService033(): PHPStan\Command\FixerApplication + { + return new PHPStan\Command\FixerApplication( + $this->getService('049'), + $this->getService('028'), + $this->getService('029'), + $this->getService('025'), + $this->getService('056'), + $this->getService('052'), + ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + '/tmp/phpstan-fixer', + 32 + ); + } + + + public function createService034(): PHPStan\Command\IgnoredRegexValidator + { + return new PHPStan\Command\IgnoredRegexValidator($this->getService('regexParser'), $this->getService('021')); + } + + + public function createService035(): PHPStan\Dependency\DependencyDumper + { + return new PHPStan\Dependency\DependencyDumper( + $this->getService('036'), + $this->getService('027'), + $this->getService('053'), + $this->getService('026'), + $this->getService('048') + ); + } + + + public function createService036(): PHPStan\Dependency\DependencyResolver + { + return new PHPStan\Dependency\DependencyResolver( + $this->getService('046'), + $this->getService('reflectionProvider'), + $this->getService('038') + ); + } + + + public function createService037(): PHPStan\Dependency\ExportedNodeFetcher + { + return new PHPStan\Dependency\ExportedNodeFetcher($this->getService('053'), $this->getService('039')); + } + + + public function createService038(): PHPStan\Dependency\ExportedNodeResolver + { + return new PHPStan\Dependency\ExportedNodeResolver($this->getService('0100'), $this->getService('05')); + } + + + public function createService039(): PHPStan\Dependency\ExportedNodeVisitor + { + return new PHPStan\Dependency\ExportedNodeVisitor($this->getService('038')); + } + + + public function createService040(): PHPStan\DependencyInjection\Container + { + return new PHPStan\DependencyInjection\MemoizingContainer($this->getService('041')); + } + + + public function createService041(): PHPStan\DependencyInjection\Nette\NetteContainer + { + return new PHPStan\DependencyInjection\Nette\NetteContainer($this); + } + + + public function createService042(): PHPStan\DependencyInjection\DerivativeContainerFactory + { + return new PHPStan\DependencyInjection\DerivativeContainerFactory( + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data', + [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.levelmax.neon', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/../../conf/config.stubValidator.neon', + ], + ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], + [ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + ], + [], + [ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon', + ], + 'max' + ); + } + + + public function createService043(): PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider + { + return new PHPStan\DependencyInjection\Reflection\LazyClassReflectionExtensionRegistryProvider($this->getService('040')); + } + + + public function createService044(): PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider + { + return new PHPStan\DependencyInjection\Type\LazyDynamicReturnTypeExtensionRegistryProvider($this->getService('040')); + } + + + public function createService045(): PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider + { + return new PHPStan\DependencyInjection\Type\LazyOperatorTypeSpecifyingExtensionRegistryProvider($this->getService('040')); + } + + + public function createService046(): PHPStan\File\FileHelper + { + return new PHPStan\File\FileHelper('/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check'); + } + + + public function createService047(): PHPStan\File\FileExcluder + { + return new PHPStan\File\FileExcluder( + $this->getService('046'), + [], + [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', + ] + ); + } + + + public function createService048(): PHPStan\File\FileFinder + { + return new PHPStan\File\FileFinder($this->getService('047'), $this->getService('046'), ['php']); + } + + + public function createService049(): PHPStan\File\FileMonitor + { + return new PHPStan\File\FileMonitor($this->getService('048')); + } + + + public function createService050(): PHPStan\NodeVisitor\StatementOrderVisitor + { + return new PHPStan\NodeVisitor\StatementOrderVisitor; + } + + + public function createService051(): PHPStan\Parallel\ParallelAnalyser + { + return new PHPStan\Parallel\ParallelAnalyser(50, 60.0, 134217728); + } + + + public function createService052(): PHPStan\Parallel\Scheduler + { + return new PHPStan\Parallel\Scheduler(20, 32, 2); + } + + + public function createService053(): PHPStan\Parser\CachedParser + { + return new PHPStan\Parser\CachedParser($this->getService('pathRoutingParser'), 1024); + } + + + public function createService054(): PHPStan\Parser\FunctionCallStatementFinder + { + return new PHPStan\Parser\FunctionCallStatementFinder; + } + + + public function createService055(): PHPStan\Parser\NodeChildrenVisitor + { + return new PHPStan\Parser\NodeChildrenVisitor; + } + + + public function createService056(): PHPStan\Process\CpuCoreCounter + { + return new PHPStan\Process\CpuCoreCounter; + } + + + public function createService057(): PHPStan\Reflection\FunctionReflectionFactory + { + return new class ($this) implements PHPStan\Reflection\FunctionReflectionFactory { + private $container; + + + public function __construct(Container_e563100465 $container) + { + $this->container = $container; + } + + + public function create( + ReflectionFunction $reflection, + PHPStan\Type\Generic\TemplateTypeMap $templateTypeMap, + array $phpDocParameterTypes, + ?PHPStan\Type\Type $phpDocReturnType, + ?PHPStan\Type\Type $phpDocThrowType, + ?string $deprecatedDescription, + bool $isDeprecated, + bool $isInternal, + bool $isFinal, + $filename + ): PHPStan\Reflection\Php\PhpFunctionReflection { + return new PHPStan\Reflection\Php\PhpFunctionReflection( + $reflection, + $this->container->getService('053'), + $this->container->getService('054'), + $this->container->getService('030'), + $templateTypeMap, + $phpDocParameterTypes, + $phpDocReturnType, + $phpDocThrowType, + $deprecatedDescription, + $isDeprecated, + $isInternal, + $isFinal, + $filename + ); + } + }; + } + + + public function createService058(): PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension + { + return new PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension; + } + + + public function createService059(): PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension + { + return new PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension; + } + + + public function createService060(): PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor; + } + + + public function createService061(): PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher( + $this->getService('060'), + $this->getService('053') + ); + } + + + public function createService062(): PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator($this->getService('061')); + } + + + public function createService063(): PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker( + $this->getService('065'), + $this->getService('068'), + $this->getService('066') + ); + } + + + public function createService064(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory + { + return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory { + private $container; + + + public function __construct(Container_e563100465 $container) + { + $this->container = $container; + } + + + public function create(string $directory): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocator + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocator( + $this->container->getService('061'), + $this->container->getService('048'), + $directory + ); + } + }; + } + + + public function createService065(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository($this->getService('064')); + } + + + public function createService066(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory + { + return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory { + private $container; + + + public function __construct(Container_e563100465 $container) + { + $this->container = $container; + } + + + public function create(_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\Composer\Psr\PsrAutoloaderMapping $mapping): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator($mapping, $this->container->getService('068')); + } + }; + } + + + public function createService067(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory + { + return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory { + private $container; + + + public function __construct(Container_e563100465 $container) + { + $this->container = $container; + } + + + public function create(string $fileName): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator( + $this->container->getService('061'), + $fileName + ); + } + }; + } + + + public function createService068(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository($this->getService('067')); + } + + + public function createService069(): PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension + { + return new PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension([]); + } + + + public function createService070(): PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension + { + return new PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension([]); + } + + + public function createService071(): PHPStan\Reflection\Php\PhpClassReflectionExtension + { + return new PHPStan\Reflection\Php\PhpClassReflectionExtension( + $this->getService('026'), + $this->getService('027'), + $this->getService('072'), + $this->getService('014'), + $this->getService('058'), + $this->getService('059'), + $this->getService('080'), + $this->getService('053'), + $this->getService('stubPhpDocProvider'), + $this->getService('reflectionProvider'), + false, + ['stdClass'] + ); + } + + + public function createService072(): PHPStan\Reflection\Php\PhpMethodReflectionFactory + { + return new class ($this) implements PHPStan\Reflection\Php\PhpMethodReflectionFactory { + private $container; + + + public function __construct(Container_e563100465 $container) + { + $this->container = $container; + } + + + public function create( + PHPStan\Reflection\ClassReflection $declaringClass, + ?PHPStan\Reflection\ClassReflection $declaringTrait, + PHPStan\Reflection\Php\BuiltinMethodReflection $reflection, + PHPStan\Type\Generic\TemplateTypeMap $templateTypeMap, + array $phpDocParameterTypes, + ?PHPStan\Type\Type $phpDocReturnType, + ?PHPStan\Type\Type $phpDocThrowType, + ?string $deprecatedDescription, + bool $isDeprecated, + bool $isInternal, + bool $isFinal, + ?string $stubPhpDocString + ): PHPStan\Reflection\Php\PhpMethodReflection { + return new PHPStan\Reflection\Php\PhpMethodReflection( + $declaringClass, + $declaringTrait, + $reflection, + $this->container->getService('reflectionProvider'), + $this->container->getService('053'), + $this->container->getService('054'), + $this->container->getService('030'), + $templateTypeMap, + $phpDocParameterTypes, + $phpDocReturnType, + $phpDocThrowType, + $deprecatedDescription, + $isDeprecated, + $isInternal, + $isFinal, + $stubPhpDocString + ); + } + }; + } + + + public function createService073(): PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension + { + return new PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension(['stdClass']); + } + + + public function createService074(): PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider + { + return new PHPStan\Reflection\ReflectionProvider\LazyReflectionProviderProvider($this->getService('040')); + } + + + public function createService075(): PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider + { + return new PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider($this->getService('080')); + } + + + public function createService076(): PHPStan\Reflection\SignatureMap\SignatureMapParser + { + return new PHPStan\Reflection\SignatureMap\SignatureMapParser($this->getService('021')); + } + + + public function createService077(): PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider + { + return new PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider($this->getService('076'), $this->getService('07')); + } + + + public function createService078(): PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider + { + return new PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider( + $this->getService('077'), + $this->getService('061'), + $this->getService('0100') + ); + } + + + public function createService079(): PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory + { + return new PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory( + $this->getService('07'), + $this->getService('077'), + $this->getService('078') + ); + } + + + public function createService080(): PHPStan\Reflection\SignatureMap\SignatureMapProvider + { + return $this->getService('079')->create(); + } + + + public function createService081(): PHPStan\Rules\ClassCaseSensitivityCheck + { + return new PHPStan\Rules\ClassCaseSensitivityCheck($this->getService('reflectionProvider')); + } + + + public function createService082(): PHPStan\Rules\Comparison\ConstantConditionRuleHelper + { + return new PHPStan\Rules\Comparison\ConstantConditionRuleHelper($this->getService('083'), true); + } + + + public function createService083(): PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper + { + return new PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper( + $this->getService('reflectionProvider'), + $this->getService('typeSpecifier'), + ['stdClass'], + true + ); + } + + + public function createService084(): PHPStan\Rules\FunctionCallParametersCheck + { + return new PHPStan\Rules\FunctionCallParametersCheck($this->getService('098'), true, true, true, true); + } + + + public function createService085(): PHPStan\Rules\FunctionDefinitionCheck + { + return new PHPStan\Rules\FunctionDefinitionCheck( + $this->getService('reflectionProvider'), + $this->getService('081'), + $this->getService('07'), + true, + false + ); + } + + + public function createService086(): PHPStan\Rules\FunctionReturnTypeCheck + { + return new PHPStan\Rules\FunctionReturnTypeCheck($this->getService('098')); + } + + + public function createService087(): PHPStan\Rules\Generics\GenericAncestorsCheck + { + return new PHPStan\Rules\Generics\GenericAncestorsCheck( + $this->getService('reflectionProvider'), + $this->getService('088'), + $this->getService('090'), + true + ); + } + + + public function createService088(): PHPStan\Rules\Generics\GenericObjectTypeCheck + { + return new PHPStan\Rules\Generics\GenericObjectTypeCheck; + } + + + public function createService089(): PHPStan\Rules\Generics\TemplateTypeCheck + { + return new PHPStan\Rules\Generics\TemplateTypeCheck($this->getService('reflectionProvider'), $this->getService('081'), [], true); + } + + + public function createService090(): PHPStan\Rules\Generics\VarianceCheck + { + return new PHPStan\Rules\Generics\VarianceCheck; + } + + + public function createService091(): PHPStan\Rules\IssetCheck + { + return new PHPStan\Rules\IssetCheck($this->getService('095'), $this->getService('096')); + } + + + public function createService092(): PHPStan\Rules\Methods\MethodSignatureRule + { + return new PHPStan\Rules\Methods\MethodSignatureRule(false, false); + } + + + public function createService093(): PHPStan\Rules\MissingTypehintCheck + { + return new PHPStan\Rules\MissingTypehintCheck($this->getService('reflectionProvider'), true, true); + } + + + public function createService094(): PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider + { + return new PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider($this->getService('040')); + } + + + public function createService095(): PHPStan\Rules\Properties\PropertyDescriptor + { + return new PHPStan\Rules\Properties\PropertyDescriptor; + } + + + public function createService096(): PHPStan\Rules\Properties\PropertyReflectionFinder + { + return new PHPStan\Rules\Properties\PropertyReflectionFinder; + } + + + public function createService097(): PHPStan\Rules\RegistryFactory + { + return new PHPStan\Rules\RegistryFactory($this->getService('040')); + } + + + public function createService098(): PHPStan\Rules\RuleLevelHelper + { + return new PHPStan\Rules\RuleLevelHelper($this->getService('reflectionProvider'), true, false, true); + } + + + public function createService099(): PHPStan\Rules\UnusedFunctionParametersCheck + { + return new PHPStan\Rules\UnusedFunctionParametersCheck; + } + + + public function createService0100(): PHPStan\Type\FileTypeMapper + { + return new PHPStan\Type\FileTypeMapper( + $this->getService('074'), + $this->getService('053'), + $this->getService('016'), + $this->getService('015'), + $this->getService('030'), + $this->getService('06') + ); + } + + + public function createService0101(): PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension; + } + + + public function createService0102(): PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension; + } + + + public function createService0103(): PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension; + } + + + public function createService0104(): PHPStan\Type\Php\ArrayFilterFunctionReturnTypeReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayFilterFunctionReturnTypeReturnTypeExtension; + } + + + public function createService0105(): PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension; + } + + + public function createService0106(): PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension; + } + + + public function createService0107(): PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension; + } + + + public function createService0108(): PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension; + } + + + public function createService0109(): PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension; + } + + + public function createService0110(): PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension; + } + + + public function createService0111(): PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension; + } + + + public function createService0112(): PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension; + } + + + public function createService0113(): PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension; + } + + + public function createService0114(): PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension; + } + + + public function createService0115(): PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension; + } + + + public function createService0116(): PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension; + } + + + public function createService0117(): PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension; + } + + + public function createService0118(): PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension; + } + + + public function createService0119(): PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension + { + return new PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension; + } + + + public function createService0120(): PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension; + } + + + public function createService0121(): PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension; + } + + + public function createService0122(): PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension; + } + + + public function createService0123(): PHPStan\Type\Php\CountFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\CountFunctionReturnTypeExtension; + } + + + public function createService0124(): PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension; + } + + + public function createService0125(): PHPStan\Type\Php\CurlInitReturnTypeExtension + { + return new PHPStan\Type\Php\CurlInitReturnTypeExtension; + } + + + public function createService0126(): PHPStan\Type\Php\DateFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\DateFunctionReturnTypeExtension; + } + + + public function createService0127(): PHPStan\Type\Php\DsMapDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\DsMapDynamicReturnTypeExtension; + } + + + public function createService0128(): PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension; + } + + + public function createService0129(): PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension($this->getService('07')); + } + + + public function createService0130(): PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension($this->getService('reflectionProvider')); + } + + + public function createService0131(): PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension; + } + + + public function createService0132(): PHPStan\Type\Php\GetClassDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\GetClassDynamicReturnTypeExtension; + } + + + public function createService0133(): PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension($this->getService('reflectionProvider')); + } + + + public function createService0134(): PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension; + } + + + public function createService0135(): PHPStan\Type\Php\HashHmacFunctionsReturnTypeExtension + { + return new PHPStan\Type\Php\HashHmacFunctionsReturnTypeExtension; + } + + + public function createService0136(): PHPStan\Type\Php\HashFunctionsReturnTypeExtension + { + return new PHPStan\Type\Php\HashFunctionsReturnTypeExtension; + } + + + public function createService0137(): PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension + { + return new PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension; + } + + + public function createService0138(): PHPStan\Type\Php\StatDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\StatDynamicReturnTypeExtension; + } + + + public function createService0139(): PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension + { + return new PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension; + } + + + public function createService0140(): PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension + { + return new PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension($this->getService('096')); + } + + + public function createService0141(): PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension; + } + + + public function createService0142(): PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension; + } + + + public function createService0143(): PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension($this->getService('reflectionProvider')); + } + + + public function createService0144(): PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension; + } + + + public function createService0145(): PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension; + } + + + public function createService0146(): PHPStan\Type\Php\VarExportFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\VarExportFunctionDynamicReturnTypeExtension; + } + + + public function createService0147(): PHPStan\Type\Php\MbFunctionsReturnTypeExtension + { + return new PHPStan\Type\Php\MbFunctionsReturnTypeExtension; + } + + + public function createService0148(): PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension; + } + + + public function createService0149(): PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension; + } + + + public function createService0150(): PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension; + } + + + public function createService0151(): PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension; + } + + + public function createService0152(): PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension; + } + + + public function createService0153(): PHPStan\Type\Php\PowFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\PowFunctionReturnTypeExtension; + } + + + public function createService0154(): PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension; + } + + + public function createService0155(): PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension; + } + + + public function createService0156(): PHPStan\Type\Php\RangeFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\RangeFunctionReturnTypeExtension; + } + + + public function createService0157(): PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension; + } + + + public function createService0158(): PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension; + } + + + public function createService0159(): PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension + { + return new PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension; + } + + + public function createService0160(): PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension + { + return new PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension; + } + + + public function createService0161(): PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension; + } + + + public function createService0162(): PHPStan\Type\Php\IsIntFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsIntFunctionTypeSpecifyingExtension; + } + + + public function createService0163(): PHPStan\Type\Php\IsFloatFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsFloatFunctionTypeSpecifyingExtension; + } + + + public function createService0164(): PHPStan\Type\Php\IsNullFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsNullFunctionTypeSpecifyingExtension; + } + + + public function createService0165(): PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension; + } + + + public function createService0166(): PHPStan\Type\Php\IsBoolFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsBoolFunctionTypeSpecifyingExtension; + } + + + public function createService0167(): PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension($this->getService('0139')); + } + + + public function createService0168(): PHPStan\Type\Php\IsCountableFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsCountableFunctionTypeSpecifyingExtension; + } + + + public function createService0169(): PHPStan\Type\Php\IsResourceFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsResourceFunctionTypeSpecifyingExtension; + } + + + public function createService0170(): PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension; + } + + + public function createService0171(): PHPStan\Type\Php\IsStringFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsStringFunctionTypeSpecifyingExtension; + } + + + public function createService0172(): PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension; + } + + + public function createService0173(): PHPStan\Type\Php\IsObjectFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsObjectFunctionTypeSpecifyingExtension; + } + + + public function createService0174(): PHPStan\Type\Php\IsNumericFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsNumericFunctionTypeSpecifyingExtension; + } + + + public function createService0175(): PHPStan\Type\Php\IsScalarFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsScalarFunctionTypeSpecifyingExtension; + } + + + public function createService0176(): PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension; + } + + + public function createService0177(): PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension($this->getService('reflectionProvider')); + } + + + public function createService0178(): PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension(true); + } + + + public function createService0179(): PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension + { + return new PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension; + } + + + public function createService0180(): PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension; + } + + + public function createService0181(): PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension; + } + + + public function createService0182(): PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension; + } + + + public function createService0183(): PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory + { + return new PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory( + $this->getService('phpParserDecorator'), + $this->getService('0185'), + $this->getService('0186'), + $this->getService('068'), + $this->getService('065'), + $this->getService('063'), + $this->getService('062'), + $this->getService('040'), + [], + [], + [], + [], + ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], + [ + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + ], + [], + $this->parameters['singleReflectionFile'], + ['#^PhpParser\\\#', '#^PHPStan\\\#', '#^Hoa\\\#'] + ); + } + + + public function createService0184(): PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory + { + return new class ($this) implements PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory { + private $container; + + + public function __construct(Container_e563100465 $container) + { + $this->container = $container; + } + + + public function create( + _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector $functionReflector, + _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector $classReflector, + _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector $constantReflector + ): PHPStan\Reflection\BetterReflection\BetterReflectionProvider { + return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider( + $this->container->getService('074'), + $this->container->getService('043'), + $classReflector, + $this->container->getService('0100'), + $this->container->getService('07'), + $this->container->getService('075'), + $this->container->getService('stubPhpDocProvider'), + $this->container->getService('057'), + $this->container->getService('relativePathHelper'), + $this->container->getService('06'), + $this->container->getService('05'), + $this->container->getService('046'), + $functionReflector, + $constantReflector + ); + } + }; + } + + + public function createService0185(): _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber + { + return new _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber($this->getService('php8PhpParser')); + } + + + public function createService0186(): _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber + { + return new _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber; + } + + + public function createService0187(): PHPStan\Rules\Classes\ExistingClassInInstanceOfRule + { + return new PHPStan\Rules\Classes\ExistingClassInInstanceOfRule( + $this->getService('reflectionProvider'), + $this->getService('081'), + true + ); + } + + + public function createService0188(): PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule + { + return new PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule( + $this->getService('reflectionProvider'), + $this->getService('081'), + true + ); + } + + + public function createService0189(): PHPStan\Rules\Functions\CallToNonExistentFunctionRule + { + return new PHPStan\Rules\Functions\CallToNonExistentFunctionRule($this->getService('reflectionProvider'), false); + } + + + public function createService0190(): PHPStan\Rules\Functions\ClosureUsesThisRule + { + return new PHPStan\Rules\Functions\ClosureUsesThisRule; + } + + + public function createService0191(): PHPStan\Rules\Methods\CallMethodsRule + { + return new PHPStan\Rules\Methods\CallMethodsRule( + $this->getService('reflectionProvider'), + $this->getService('084'), + $this->getService('098'), + false, + true + ); + } + + + public function createService0192(): PHPStan\Rules\Methods\CallStaticMethodsRule + { + return new PHPStan\Rules\Methods\CallStaticMethodsRule( + $this->getService('reflectionProvider'), + $this->getService('084'), + $this->getService('098'), + $this->getService('081'), + false, + true + ); + } + + + public function createService0193(): PHPStan\Rules\Methods\OverridingMethodRule + { + return new PHPStan\Rules\Methods\OverridingMethodRule($this->getService('07'), $this->getService('092'), true); + } + + + public function createService0194(): PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule + { + return new PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule(false); + } + + + public function createService0195(): PHPStan\Rules\Missing\MissingReturnRule + { + return new PHPStan\Rules\Missing\MissingReturnRule(false, true); + } + + + public function createService0196(): PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule + { + return new PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule( + $this->getService('reflectionProvider'), + $this->getService('081'), + false + ); + } + + + public function createService0197(): PHPStan\Rules\Namespaces\ExistingNamesInUseRule + { + return new PHPStan\Rules\Namespaces\ExistingNamesInUseRule( + $this->getService('reflectionProvider'), + $this->getService('081'), + false + ); + } + + + public function createService0198(): PHPStan\Rules\Operators\InvalidIncDecOperationRule + { + return new PHPStan\Rules\Operators\InvalidIncDecOperationRule(false); + } + + + public function createService0199(): PHPStan\Rules\Properties\AccessPropertiesRule + { + return new PHPStan\Rules\Properties\AccessPropertiesRule( + $this->getService('reflectionProvider'), + $this->getService('098'), + true + ); + } + + + public function createService0200(): PHPStan\Rules\Properties\AccessStaticPropertiesRule + { + return new PHPStan\Rules\Properties\AccessStaticPropertiesRule( + $this->getService('reflectionProvider'), + $this->getService('098'), + $this->getService('081') + ); + } + + + public function createService0201(): PHPStan\Rules\Properties\ExistingClassesInPropertiesRule + { + return new PHPStan\Rules\Properties\ExistingClassesInPropertiesRule( + $this->getService('reflectionProvider'), + $this->getService('081'), + true, + false + ); + } + + + public function createService0202(): PHPStan\Rules\Properties\UninitializedPropertyRule + { + return new PHPStan\Rules\Properties\UninitializedPropertyRule($this->getService('094'), ['PHPUnit\Framework\TestCase::setUp']); + } + + + public function createService0203(): PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule + { + return new PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule( + $this->getService('098'), + $this->getService('095'), + $this->getService('096'), + false + ); + } + + + public function createService0204(): PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule + { + return new PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule( + $this->getService('095'), + $this->getService('096'), + $this->getService('098'), + false + ); + } + + + public function createService0205(): PHPStan\Rules\Variables\CompactVariablesRule + { + return new PHPStan\Rules\Variables\CompactVariablesRule(true); + } + + + public function createService0206(): PHPStan\Rules\Variables\DefinedVariableRule + { + return new PHPStan\Rules\Variables\DefinedVariableRule(true, true); + } + + + public function createService0207(): PHPStan\Rules\Regexp\RegularExpressionPatternRule + { + return new PHPStan\Rules\Regexp\RegularExpressionPatternRule; + } + + + public function createService0208(): PHPStan\Rules\Whitespace\FileWhitespaceRule + { + return new PHPStan\Rules\Whitespace\FileWhitespaceRule; + } + + + public function createService0209(): PHPStan\Rules\Variables\VariableCertaintyNullCoalesceRule + { + return new PHPStan\Rules\Variables\VariableCertaintyNullCoalesceRule; + } + + + public function createService0210(): PHPStan\Rules\Classes\MixinRule + { + return new PHPStan\Rules\Classes\MixinRule( + $this->getService('0100'), + $this->getService('reflectionProvider'), + $this->getService('081'), + $this->getService('088'), + $this->getService('093'), + true + ); + } + + + public function createService0211(): PHPStan\Rules\Functions\CallCallablesRule + { + return new PHPStan\Rules\Functions\CallCallablesRule($this->getService('084'), $this->getService('098'), true); + } + + + public function createService0212(): PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule + { + return new PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule( + $this->getService('0100'), + $this->getService('reflectionProvider'), + $this->getService('081'), + $this->getService('088'), + $this->getService('093'), + true, + true + ); + } + + + public function createService0213(): PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule + { + return new PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule($this->getService('096'), true); + } + + + public function createService0214(): PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule + { + return new PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule(true); + } + + + public function createService0215(): PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule + { + return new PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule(true); + } + + + public function createService0216(): PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule + { + return new PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule($this->getService('098'), true); + } + + + public function createService0217(): PHPStan\Rules\Functions\ReturnTypeRule + { + return new PHPStan\Rules\Functions\ReturnTypeRule( + $this->getService('086'), + $this->getService('betterReflectionFunctionReflector') + ); + } + + + public function createService0218(): PHPStan\Rules\Generators\YieldFromTypeRule + { + return new PHPStan\Rules\Generators\YieldFromTypeRule($this->getService('098'), true); + } + + + public function createService0219(): PHPStan\Rules\Generators\YieldInGeneratorRule + { + return new PHPStan\Rules\Generators\YieldInGeneratorRule(true); + } + + + public function createService0220(): PHPStan\Rules\Classes\ImpossibleInstanceOfRule + { + return new PHPStan\Rules\Classes\ImpossibleInstanceOfRule(false, true); + } + + + public function createService0221(): PHPStan\Rules\Comparison\BooleanAndConstantConditionRule + { + return new PHPStan\Rules\Comparison\BooleanAndConstantConditionRule($this->getService('082'), true); + } + + + public function createService0222(): PHPStan\Rules\Comparison\BooleanOrConstantConditionRule + { + return new PHPStan\Rules\Comparison\BooleanOrConstantConditionRule($this->getService('082'), true); + } + + + public function createService0223(): PHPStan\Rules\Comparison\BooleanNotConstantConditionRule + { + return new PHPStan\Rules\Comparison\BooleanNotConstantConditionRule($this->getService('082'), true); + } + + + public function createService0224(): PHPStan\Rules\DeadCode\UnusedPrivateConstantRule + { + return new PHPStan\Rules\DeadCode\UnusedPrivateConstantRule; + } + + + public function createService0225(): PHPStan\Rules\DeadCode\UnusedPrivateMethodRule + { + return new PHPStan\Rules\DeadCode\UnusedPrivateMethodRule; + } + + + public function createService0226(): PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule + { + return new PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule($this->getService('094'), [], [], false); + } + + + public function createService0227(): PHPStan\Rules\Comparison\ElseIfConstantConditionRule + { + return new PHPStan\Rules\Comparison\ElseIfConstantConditionRule($this->getService('082'), true); + } + + + public function createService0228(): PHPStan\Rules\Comparison\IfConstantConditionRule + { + return new PHPStan\Rules\Comparison\IfConstantConditionRule($this->getService('082'), true); + } + + + public function createService0229(): PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule + { + return new PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule($this->getService('083'), false, true); + } + + + public function createService0230(): PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule + { + return new PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule($this->getService('083'), false, true); + } + + + public function createService0231(): PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule + { + return new PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule($this->getService('083'), false, true); + } + + + public function createService0232(): PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule + { + return new PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule(false); + } + + + public function createService0233(): PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule + { + return new PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule($this->getService('082'), true); + } + + + public function createService0234(): PHPStan\Rules\Comparison\UnreachableIfBranchesRule + { + return new PHPStan\Rules\Comparison\UnreachableIfBranchesRule($this->getService('082'), true); + } + + + public function createService0235(): PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule + { + return new PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule($this->getService('082'), true); + } + + + public function createService0236(): PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule + { + return new PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule(false); + } + + + public function createService0237(): PHPStan\Rules\Variables\IssetRule + { + return new PHPStan\Rules\Variables\IssetRule($this->getService('091')); + } + + + public function createService0238(): PHPStan\Rules\Variables\NullCoalesceRule + { + return new PHPStan\Rules\Variables\NullCoalesceRule($this->getService('091')); + } + + + public function createService0239(): PHPStan\Rules\Functions\RandomIntParametersRule + { + return new PHPStan\Rules\Functions\RandomIntParametersRule($this->getService('reflectionProvider'), true); + } + + + public function createService0240(): PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension + { + return new PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension; + } + + + public function createService0241(): PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension; + } + + + public function createService0242(): PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension + { + return new PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension; + } + + + public function createService0243(): PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension + { + return new PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension; + } + + + public function createService0244(): PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension + { + return new PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension; + } + + + public function createService0245(): PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension + { + return new PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension; + } + + + public function createService0246(): PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension + { + return new PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension; + } + + + public function createService0247(): PHPStan\Rules\Deprecations\DeprecatedClassHelper + { + return new PHPStan\Rules\Deprecations\DeprecatedClassHelper($this->getService('broker')); + } + + + public function createService0248(): PHPStan\PhpDoc\StubSourceLocatorFactory + { + return new PHPStan\PhpDoc\StubSourceLocatorFactory( + $this->getService('phpParserDecorator'), + $this->getService('0185'), + $this->getService('068'), + $this->getService('040'), + [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', + ] + ); + } + + + public function createServiceBetterReflectionClassReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector + { + return new PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector($this->getService('betterReflectionSourceLocator')); + } + + + public function createServiceBetterReflectionConstantReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingConstantReflector + { + return new PHPStan\Reflection\BetterReflection\Reflector\MemoizingConstantReflector( + $this->getService('betterReflectionSourceLocator'), + $this->getService('betterReflectionClassReflector') + ); + } + + + public function createServiceBetterReflectionFunctionReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingFunctionReflector + { + return new PHPStan\Reflection\BetterReflection\Reflector\MemoizingFunctionReflector( + $this->getService('betterReflectionSourceLocator'), + $this->getService('betterReflectionClassReflector') + ); + } + + + public function createServiceBetterReflectionProvider(): PHPStan\Reflection\BetterReflection\BetterReflectionProvider + { + return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider( + $this->getService('074'), + $this->getService('043'), + $this->getService('betterReflectionClassReflector'), + $this->getService('0100'), + $this->getService('07'), + $this->getService('075'), + $this->getService('stubPhpDocProvider'), + $this->getService('057'), + $this->getService('relativePathHelper'), + $this->getService('06'), + $this->getService('05'), + $this->getService('046'), + $this->getService('betterReflectionFunctionReflector'), + $this->getService('betterReflectionConstantReflector') + ); + } + + + public function createServiceBetterReflectionSourceLocator(): _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\SourceLocator + { + return $this->getService('0183')->create(); + } + + + public function createServiceBroker(): PHPStan\Broker\Broker + { + return $this->getService('brokerFactory')->create(); + } + + + public function createServiceBrokerFactory(): PHPStan\Broker\BrokerFactory + { + return new PHPStan\Broker\BrokerFactory($this->getService('040')); + } + + + public function createServiceCacheStorage(): PHPStan\Cache\FileCacheStorage + { + return new PHPStan\Cache\FileCacheStorage('/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/cache/PHPStan'); + } + + + public function createServiceContainer(): Container_e563100465 + { + return $this; + } + + + public function createServiceCurrentPhpVersionLexer(): PhpParser\Lexer + { + return $this->getService('02')->create(); + } + + + public function createServiceCurrentPhpVersionPhpParser(): PhpParser\Parser\Php7 + { + return new PhpParser\Parser\Php7($this->getService('currentPhpVersionLexer')); + } + + + public function createServiceCurrentPhpVersionRichParser(): PHPStan\Parser\RichParser + { + return new PHPStan\Parser\RichParser( + $this->getService('currentPhpVersionPhpParser'), + $this->getService('currentPhpVersionLexer'), + $this->getService('03'), + $this->getService('04'), + $this->getService('050'), + $this->getService('055'), + $this->getService('07') + ); + } + + + public function createServiceCurrentPhpVersionSimpleParser(): PHPStan\Parser\SimpleParser + { + return new PHPStan\Parser\SimpleParser($this->getService('currentPhpVersionPhpParser'), $this->getService('03')); + } + + + public function createServiceErrorFormatter__baselineNeon(): PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter($this->getService('simpleRelativePathHelper')); + } + + + public function createServiceErrorFormatter__checkstyle(): PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter($this->getService('simpleRelativePathHelper')); + } + + + public function createServiceErrorFormatter__github(): PHPStan\Command\ErrorFormatter\GithubErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\GithubErrorFormatter( + $this->getService('simpleRelativePathHelper'), + $this->getService('errorFormatter.table') + ); + } + + + public function createServiceErrorFormatter__gitlab(): PHPStan\Command\ErrorFormatter\GitlabErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\GitlabErrorFormatter($this->getService('simpleRelativePathHelper')); + } + + + public function createServiceErrorFormatter__json(): PHPStan\Command\ErrorFormatter\JsonErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\JsonErrorFormatter(false); + } + + + public function createServiceErrorFormatter__junit(): PHPStan\Command\ErrorFormatter\JunitErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\JunitErrorFormatter($this->getService('simpleRelativePathHelper')); + } + + + public function createServiceErrorFormatter__prettyJson(): PHPStan\Command\ErrorFormatter\JsonErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\JsonErrorFormatter(true); + } + + + public function createServiceErrorFormatter__raw(): PHPStan\Command\ErrorFormatter\RawErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\RawErrorFormatter; + } + + + public function createServiceErrorFormatter__table(): PHPStan\Command\ErrorFormatter\TableErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\TableErrorFormatter($this->getService('relativePathHelper'), true); + } + + + public function createServiceErrorFormatter__teamcity(): PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter($this->getService('simpleRelativePathHelper')); + } + + + public function createServiceInnerRuntimeReflectionProvider(): PHPStan\Reflection\Runtime\RuntimeReflectionProvider + { + return new PHPStan\Reflection\Runtime\RuntimeReflectionProvider( + $this->getService('074'), + $this->getService('043'), + $this->getService('057'), + $this->getService('0100'), + $this->getService('07'), + $this->getService('075'), + $this->getService('stubPhpDocProvider'), + $this->getService('0185') + ); + } + + + public function createServiceNodeScopeResolverClassReflector(): _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector + { + return $this->getService('stubClassReflector'); + } + + + public function createServiceParentDirectoryRelativePathHelper(): PHPStan\File\ParentDirectoryRelativePathHelper + { + return new PHPStan\File\ParentDirectoryRelativePathHelper('/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check'); + } + + + public function createServicePathRoutingParser(): PHPStan\Parser\PathRoutingParser + { + return new PHPStan\Parser\PathRoutingParser( + $this->getService('046'), + $this->getService('currentPhpVersionRichParser'), + $this->getService('currentPhpVersionSimpleParser'), + $this->getService('php8Parser') + ); + } + + + public function createServicePhp8Lexer(): PhpParser\Lexer\Emulative + { + return new PhpParser\Lexer\Emulative; + } + + + public function createServicePhp8Parser(): PHPStan\Parser\SimpleParser + { + return new PHPStan\Parser\SimpleParser($this->getService('php8PhpParser'), $this->getService('03')); + } + + + public function createServicePhp8PhpParser(): PhpParser\Parser\Php7 + { + return new PhpParser\Parser\Php7($this->getService('php8Lexer')); + } + + + public function createServicePhpParserDecorator(): PHPStan\Parser\PhpParserDecorator + { + return new PHPStan\Parser\PhpParserDecorator($this->getService('053')); + } + + + public function createServiceReflectionProvider(): PHPStan\Reflection\BetterReflection\BetterReflectionProvider + { + return $this->getService('stubBetterReflectionProvider'); + } + + + public function createServiceReflectionProviderFactory(): PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory + { + return new PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory( + $this->getService('runtimeReflectionProvider'), + $this->getService('betterReflectionProvider'), + false + ); + } + + + public function createServiceRegexGrammarStream(): Hoa\File\Read + { + return new Hoa\File\Read('hoa://Library/Regex/Grammar.pp'); + } + + + public function createServiceRegexParser(): Hoa\Compiler\Llk\Parser + { + return Hoa\Compiler\Llk\Llk::load($this->getService('regexGrammarStream')); + } + + + public function createServiceRegistry(): PHPStan\Rules\Registry + { + return $this->getService('097')->create(); + } + + + public function createServiceRelativePathHelper(): PHPStan\File\RelativePathHelper + { + return new PHPStan\File\FuzzyRelativePathHelper( + $this->getService('parentDirectoryRelativePathHelper'), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', + ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'] + ); + } + + + public function createServiceRules__0(): PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule + { + return new PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule($this->getService('05')); + } + + + public function createServiceRules__1(): PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule + { + return new PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule; + } + + + public function createServiceRules__10(): PHPStan\Rules\Exceptions\ThrowExpressionRule + { + return new PHPStan\Rules\Exceptions\ThrowExpressionRule($this->getService('07')); + } + + + public function createServiceRules__11(): PHPStan\Rules\Functions\CallToFunctionParametersRule + { + return new PHPStan\Rules\Functions\CallToFunctionParametersRule( + $this->getService('reflectionProvider'), + $this->getService('084') + ); + } + + + public function createServiceRules__12(): PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule + { + return new PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule($this->getService('085')); + } + + + public function createServiceRules__13(): PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule + { + return new PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule($this->getService('085')); + } + + + public function createServiceRules__14(): PHPStan\Rules\Functions\ExistingClassesInTypehintsRule + { + return new PHPStan\Rules\Functions\ExistingClassesInTypehintsRule($this->getService('085')); + } + + + public function createServiceRules__15(): PHPStan\Rules\Functions\InnerFunctionRule + { + return new PHPStan\Rules\Functions\InnerFunctionRule; + } + + + public function createServiceRules__16(): PHPStan\Rules\Functions\PrintfParametersRule + { + return new PHPStan\Rules\Functions\PrintfParametersRule; + } + + + public function createServiceRules__17(): PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule + { + return new PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule; + } + + + public function createServiceRules__18(): PHPStan\Rules\Methods\ExistingClassesInTypehintsRule + { + return new PHPStan\Rules\Methods\ExistingClassesInTypehintsRule($this->getService('085')); + } + + + public function createServiceRules__19(): PHPStan\Rules\Methods\MissingMethodImplementationRule + { + return new PHPStan\Rules\Methods\MissingMethodImplementationRule; + } + + + public function createServiceRules__2(): PHPStan\Rules\Classes\ClassConstantRule + { + return new PHPStan\Rules\Classes\ClassConstantRule( + $this->getService('reflectionProvider'), + $this->getService('098'), + $this->getService('081'), + $this->getService('07') + ); + } + + + public function createServiceRules__20(): PHPStan\Rules\Properties\AccessPropertiesInAssignRule + { + return new PHPStan\Rules\Properties\AccessPropertiesInAssignRule($this->getService('0199')); + } + + + public function createServiceRules__21(): PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule + { + return new PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule($this->getService('0200')); + } + + + public function createServiceRules__22(): PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule + { + return new PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule($this->getService('07')); + } + + + public function createServiceRules__23(): PHPStan\Rules\Variables\UnsetRule + { + return new PHPStan\Rules\Variables\UnsetRule; + } + + + public function createServiceRules__24(): PHPStan\Rules\Classes\UnusedConstructorParametersRule + { + return new PHPStan\Rules\Classes\UnusedConstructorParametersRule($this->getService('099')); + } + + + public function createServiceRules__25(): PHPStan\Rules\Constants\ConstantRule + { + return new PHPStan\Rules\Constants\ConstantRule; + } + + + public function createServiceRules__26(): PHPStan\Rules\Functions\UnusedClosureUsesRule + { + return new PHPStan\Rules\Functions\UnusedClosureUsesRule($this->getService('099')); + } + + + public function createServiceRules__27(): PHPStan\Rules\Variables\VariableCertaintyInIssetRule + { + return new PHPStan\Rules\Variables\VariableCertaintyInIssetRule; + } + + + public function createServiceRules__28(): PHPStan\Rules\Cast\EchoRule + { + return new PHPStan\Rules\Cast\EchoRule($this->getService('098')); + } + + + public function createServiceRules__29(): PHPStan\Rules\Cast\InvalidCastRule + { + return new PHPStan\Rules\Cast\InvalidCastRule($this->getService('reflectionProvider'), $this->getService('098')); + } + + + public function createServiceRules__3(): PHPStan\Rules\Classes\DuplicateDeclarationRule + { + return new PHPStan\Rules\Classes\DuplicateDeclarationRule; + } + + + public function createServiceRules__30(): PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule + { + return new PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule($this->getService('05'), $this->getService('098')); + } + + + public function createServiceRules__31(): PHPStan\Rules\Cast\PrintRule + { + return new PHPStan\Rules\Cast\PrintRule($this->getService('098')); + } + + + public function createServiceRules__32(): PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule + { + return new PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule; + } + + + public function createServiceRules__33(): PHPStan\Rules\Generics\ClassAncestorsRule + { + return new PHPStan\Rules\Generics\ClassAncestorsRule($this->getService('0100'), $this->getService('087')); + } + + + public function createServiceRules__34(): PHPStan\Rules\Generics\ClassTemplateTypeRule + { + return new PHPStan\Rules\Generics\ClassTemplateTypeRule($this->getService('089')); + } + + + public function createServiceRules__35(): PHPStan\Rules\Generics\FunctionTemplateTypeRule + { + return new PHPStan\Rules\Generics\FunctionTemplateTypeRule($this->getService('0100'), $this->getService('089')); + } + + + public function createServiceRules__36(): PHPStan\Rules\Generics\FunctionSignatureVarianceRule + { + return new PHPStan\Rules\Generics\FunctionSignatureVarianceRule($this->getService('090')); + } + + + public function createServiceRules__37(): PHPStan\Rules\Generics\InterfaceAncestorsRule + { + return new PHPStan\Rules\Generics\InterfaceAncestorsRule($this->getService('0100'), $this->getService('087')); + } + + + public function createServiceRules__38(): PHPStan\Rules\Generics\InterfaceTemplateTypeRule + { + return new PHPStan\Rules\Generics\InterfaceTemplateTypeRule($this->getService('0100'), $this->getService('089')); + } + + + public function createServiceRules__39(): PHPStan\Rules\Generics\MethodTemplateTypeRule + { + return new PHPStan\Rules\Generics\MethodTemplateTypeRule($this->getService('0100'), $this->getService('089')); + } + + + public function createServiceRules__4(): PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule + { + return new PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule( + $this->getService('081'), + $this->getService('reflectionProvider') + ); + } + + + public function createServiceRules__40(): PHPStan\Rules\Generics\MethodSignatureVarianceRule + { + return new PHPStan\Rules\Generics\MethodSignatureVarianceRule($this->getService('090')); + } + + + public function createServiceRules__41(): PHPStan\Rules\Generics\TraitTemplateTypeRule + { + return new PHPStan\Rules\Generics\TraitTemplateTypeRule($this->getService('0100'), $this->getService('089')); + } + + + public function createServiceRules__42(): PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule + { + return new PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule; + } + + + public function createServiceRules__43(): PHPStan\Rules\Operators\InvalidBinaryOperationRule + { + return new PHPStan\Rules\Operators\InvalidBinaryOperationRule($this->getService('05'), $this->getService('098')); + } + + + public function createServiceRules__44(): PHPStan\Rules\Operators\InvalidUnaryOperationRule + { + return new PHPStan\Rules\Operators\InvalidUnaryOperationRule; + } + + + public function createServiceRules__45(): PHPStan\Rules\Operators\InvalidComparisonOperationRule + { + return new PHPStan\Rules\Operators\InvalidComparisonOperationRule($this->getService('098')); + } + + + public function createServiceRules__46(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule + { + return new PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule($this->getService('0100'), $this->getService('088')); + } + + + public function createServiceRules__47(): PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule + { + return new PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule($this->getService('088')); + } + + + public function createServiceRules__48(): PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule + { + return new PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule($this->getService('010'), $this->getService('013')); + } + + + public function createServiceRules__49(): PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule + { + return new PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule($this->getService('010'), $this->getService('013')); + } + + + public function createServiceRules__5(): PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule + { + return new PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule( + $this->getService('081'), + $this->getService('reflectionProvider') + ); + } + + + public function createServiceRules__50(): PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule + { + return new PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule($this->getService('0100')); + } + + + public function createServiceRules__51(): PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule + { + return new PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule($this->getService('0100')); + } + + + public function createServiceRules__52(): PHPStan\Rules\Arrays\AppendedArrayItemTypeRule + { + return new PHPStan\Rules\Arrays\AppendedArrayItemTypeRule($this->getService('096'), $this->getService('098')); + } + + + public function createServiceRules__53(): PHPStan\Rules\Arrays\IterableInForeachRule + { + return new PHPStan\Rules\Arrays\IterableInForeachRule($this->getService('098')); + } + + + public function createServiceRules__54(): PHPStan\Rules\Arrays\OffsetAccessAssignmentRule + { + return new PHPStan\Rules\Arrays\OffsetAccessAssignmentRule($this->getService('098')); + } + + + public function createServiceRules__55(): PHPStan\Rules\Arrays\OffsetAccessAssignOpRule + { + return new PHPStan\Rules\Arrays\OffsetAccessAssignOpRule($this->getService('098')); + } + + + public function createServiceRules__56(): PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule + { + return new PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule($this->getService('098')); + } + + + public function createServiceRules__57(): PHPStan\Rules\Arrays\UnpackIterableInArrayRule + { + return new PHPStan\Rules\Arrays\UnpackIterableInArrayRule($this->getService('098')); + } + + + public function createServiceRules__58(): PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule + { + return new PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule($this->getService('086')); + } + + + public function createServiceRules__59(): PHPStan\Rules\Functions\ClosureReturnTypeRule + { + return new PHPStan\Rules\Functions\ClosureReturnTypeRule($this->getService('086')); + } + + + public function createServiceRules__6(): PHPStan\Rules\Classes\ExistingClassInClassExtendsRule + { + return new PHPStan\Rules\Classes\ExistingClassInClassExtendsRule( + $this->getService('081'), + $this->getService('reflectionProvider') + ); + } + + + public function createServiceRules__60(): PHPStan\Rules\Generators\YieldTypeRule + { + return new PHPStan\Rules\Generators\YieldTypeRule($this->getService('098')); + } + + + public function createServiceRules__61(): PHPStan\Rules\Methods\ReturnTypeRule + { + return new PHPStan\Rules\Methods\ReturnTypeRule($this->getService('086')); + } + + + public function createServiceRules__62(): PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule + { + return new PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule($this->getService('098')); + } + + + public function createServiceRules__63(): PHPStan\Rules\Properties\TypesAssignedToPropertiesRule + { + return new PHPStan\Rules\Properties\TypesAssignedToPropertiesRule( + $this->getService('098'), + $this->getService('095'), + $this->getService('096') + ); + } + + + public function createServiceRules__64(): PHPStan\Rules\Variables\ThrowTypeRule + { + return new PHPStan\Rules\Variables\ThrowTypeRule($this->getService('098')); + } + + + public function createServiceRules__65(): PHPStan\Rules\Variables\VariableCloningRule + { + return new PHPStan\Rules\Variables\VariableCloningRule($this->getService('098')); + } + + + public function createServiceRules__66(): PHPStan\Rules\Arrays\DeadForeachRule + { + return new PHPStan\Rules\Arrays\DeadForeachRule; + } + + + public function createServiceRules__67(): PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule + { + return new PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule; + } + + + public function createServiceRules__68(): PHPStan\Rules\DeadCode\NoopRule + { + return new PHPStan\Rules\DeadCode\NoopRule($this->getService('05')); + } + + + public function createServiceRules__69(): PHPStan\Rules\DeadCode\UnreachableStatementRule + { + return new PHPStan\Rules\DeadCode\UnreachableStatementRule; + } + + + public function createServiceRules__7(): PHPStan\Rules\Classes\ExistingClassInTraitUseRule + { + return new PHPStan\Rules\Classes\ExistingClassInTraitUseRule($this->getService('081'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__70(): PHPStan\Rules\Exceptions\DeadCatchRule + { + return new PHPStan\Rules\Exceptions\DeadCatchRule; + } + + + public function createServiceRules__71(): PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule + { + return new PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule($this->getService('reflectionProvider')); + } + + + public function createServiceRules__72(): PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule + { + return new PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule($this->getService('098')); + } + + + public function createServiceRules__73(): PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule + { + return new PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule( + $this->getService('098'), + $this->getService('reflectionProvider') + ); + } + + + public function createServiceRules__74(): PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule + { + return new PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule; + } + + + public function createServiceRules__75(): PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule + { + return new PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule; + } + + + public function createServiceRules__76(): PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule + { + return new PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule; + } + + + public function createServiceRules__77(): PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule + { + return new PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule($this->getService('093')); + } + + + public function createServiceRules__78(): PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule + { + return new PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule($this->getService('093')); + } + + + public function createServiceRules__79(): PHPStan\Rules\Methods\MissingMethodParameterTypehintRule + { + return new PHPStan\Rules\Methods\MissingMethodParameterTypehintRule($this->getService('093')); + } + + + public function createServiceRules__8(): PHPStan\Rules\Classes\InstantiationRule + { + return new PHPStan\Rules\Classes\InstantiationRule( + $this->getService('reflectionProvider'), + $this->getService('084'), + $this->getService('081') + ); + } + + + public function createServiceRules__80(): PHPStan\Rules\Methods\MissingMethodReturnTypehintRule + { + return new PHPStan\Rules\Methods\MissingMethodReturnTypehintRule($this->getService('093')); + } + + + public function createServiceRules__81(): PHPStan\Rules\Properties\MissingPropertyTypehintRule + { + return new PHPStan\Rules\Properties\MissingPropertyTypehintRule($this->getService('093')); + } + + + public function createServiceRules__82(): PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule + { + return new PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule($this->getService('broker')); + } + + + public function createServiceRules__83(): PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule + { + return new PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule($this->getService('broker'), $this->getService('098')); + } + + + public function createServiceRules__84(): PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule + { + return new PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule($this->getService('broker')); + } + + + public function createServiceRules__85(): PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule + { + return new PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule($this->getService('broker')); + } + + + public function createServiceRules__86(): PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule + { + return new PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule($this->getService('broker'), $this->getService('098')); + } + + + public function createServiceRules__87(): PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule + { + return new PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule( + $this->getService('broker'), + $this->getService('098') + ); + } + + + public function createServiceRules__88(): PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule + { + return new PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule($this->getService('reflectionProvider')); + } + + + public function createServiceRules__89(): PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule + { + return new PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule($this->getService('broker')); + } + + + public function createServiceRules__9(): PHPStan\Rules\Classes\NewStaticRule + { + return new PHPStan\Rules\Classes\NewStaticRule; + } + + + public function createServiceRules__90(): PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule + { + return new PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule($this->getService('broker')); + } + + + public function createServiceRules__91(): PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule + { + return new PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule($this->getService('broker')); + } + + + public function createServiceRules__92(): PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule + { + return new PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule($this->getService('broker'), $this->getService('098')); + } + + + public function createServiceRules__93(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule + { + return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule($this->getService('0247')); + } + + + public function createServiceRules__94(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule + { + return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule($this->getService('0247')); + } + + + public function createServiceRules__95(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule + { + return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule($this->getService('0247')); + } + + + public function createServiceRules__96(): PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule + { + return new PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule; + } + + + public function createServiceRules__97(): PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule + { + return new PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule($this->getService('broker')); + } + + + public function createServiceRuntimeReflectionProvider(): PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider + { + return new PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider( + $this->getService('innerRuntimeReflectionProvider'), + $this->getService('0185'), + ['#^PhpParser\\\#', '#^PHPStan\\\#', '#^Hoa\\\#'], + null + ); + } + + + public function createServiceSimpleRelativePathHelper(): PHPStan\File\RelativePathHelper + { + return new PHPStan\File\SimpleRelativePathHelper('/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check'); + } + + + public function createServiceStubBetterReflectionProvider(): PHPStan\Reflection\BetterReflection\BetterReflectionProvider + { + return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider( + $this->getService('074'), + $this->getService('043'), + $this->getService('stubClassReflector'), + $this->getService('0100'), + $this->getService('07'), + $this->getService('075'), + $this->getService('stubPhpDocProvider'), + $this->getService('057'), + $this->getService('relativePathHelper'), + $this->getService('06'), + $this->getService('05'), + $this->getService('046'), + $this->getService('stubFunctionReflector'), + $this->getService('stubConstantReflector') + ); + } + + + public function createServiceStubClassReflector(): _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector + { + return new _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector($this->getService('stubSourceLocator')); + } + + + public function createServiceStubConstantReflector(): _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector + { + return new _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector( + $this->getService('stubSourceLocator'), + $this->getService('stubClassReflector') + ); + } + + + public function createServiceStubFunctionReflector(): _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector + { + return new _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector( + $this->getService('stubSourceLocator'), + $this->getService('stubClassReflector') + ); + } + + + public function createServiceStubPhpDocProvider(): PHPStan\PhpDoc\StubPhpDocProvider + { + return new PHPStan\PhpDoc\StubPhpDocProvider( + $this->getService('053'), + $this->getService('0100'), + [ + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', + ] + ); + } + + + public function createServiceStubSourceLocator(): _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\SourceLocator + { + return $this->getService('0248')->create(); + } + + + public function createServiceTypeSpecifier(): PHPStan\Analyser\TypeSpecifier + { + return $this->getService('typeSpecifierFactory')->create(); + } + + + public function createServiceTypeSpecifierFactory(): PHPStan\Analyser\TypeSpecifierFactory + { + return new PHPStan\Analyser\TypeSpecifierFactory($this->getService('040')); + } + + + public function initialize() + { + } +} diff --git a/data/cache/nette.configurator/Container_e563100465.php.lock b/data/cache/nette.configurator/Container_e563100465.php.lock new file mode 100644 index 0000000..e69de29 diff --git a/data/cache/nette.configurator/Container_e563100465.php.meta b/data/cache/nette.configurator/Container_e563100465.php.meta new file mode 100644 index 0000000..3141d92 --- /dev/null +++ b/data/cache/nette.configurator/Container_e563100465.php.meta @@ -0,0 +1 @@ +a:6:{i:0;i:1;i:1;a:22:{s:134:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.neon";i:1603454189;s:143:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.levelmax.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level8.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level7.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level6.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level5.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level4.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level3.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level2.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level1.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level0.neon";i:1603454189;s:97:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist";i:1603543935;s:125:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon";i:1596634130;s:131:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon";i:1595343150;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/../../conf/config.stubValidator.neon";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Extensions/ServicesExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Extensions/ParametersExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Extensions/PhpExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Extensions/ExtensionsExtension.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/RulesExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/ConditionalTagsExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/ParametersSchemaExtension.php";i:1603454189;}i:2;a:445:{s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/DuplicateKeysInLiteralArraysRule.php";i:1603454189;s:136:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Rule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/OffsetAccessWithoutDimForReadingRule.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ClassConstantRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/DuplicateDeclarationRule.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassesInClassImplementsRule.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassesInInterfaceExtendsRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassInClassExtendsRule.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassInTraitUseRule.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/InstantiationRule.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/NewStaticRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Exceptions/ThrowExpressionRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/CallToFunctionParametersRule.php";i:1603454189;s:185:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ExistingClassesInArrowFunctionTypehintsRule.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ExistingClassesInClosureTypehintsRule.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ExistingClassesInTypehintsRule.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/InnerFunctionRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/PrintfParametersRule.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/AbstractMethodInNonAbstractClassRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/ExistingClassesInTypehintsRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/MissingMethodImplementationRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/AccessPropertiesInAssignRule.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/AccessStaticPropertiesInAssignRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Ternary/RequireParenthesesForNestedTernaryRule.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/UnsetRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/UnusedConstructorParametersRule.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Constants/ConstantRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/UnusedClosureUsesRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/VariableCertaintyInIssetRule.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Cast/EchoRule.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Cast/InvalidCastRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Cast/InvalidPartOfEncapsedStringRule.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Cast/PrintRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/IncompatibleDefaultParameterTypeRule.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/ClassAncestorsRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/ClassTemplateTypeRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/FunctionTemplateTypeRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/FunctionSignatureVarianceRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/InterfaceAncestorsRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/InterfaceTemplateTypeRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/MethodTemplateTypeRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/MethodSignatureVarianceRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/TraitTemplateTypeRule.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/IncompatibleDefaultParameterTypeRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Operators/InvalidBinaryOperationRule.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Operators/InvalidUnaryOperationRule.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Operators/InvalidComparisonOperationRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/IncompatiblePhpDocTypeRule.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/IncompatiblePropertyPhpDocTypeRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/InvalidPhpDocTagValueRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/InvalidPHPStanDocTagRule.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/InvalidThrowsPhpDocValueRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/WrongVariableNameInVarTagRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/AppendedArrayItemTypeRule.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/IterableInForeachRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/OffsetAccessAssignmentRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/OffsetAccessAssignOpRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/OffsetAccessValueAssignmentRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/UnpackIterableInArrayRule.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ArrowFunctionReturnTypeRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ClosureReturnTypeRule.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generators/YieldTypeRule.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/ReturnTypeRule.php";i:1603454189;s:184:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/DefaultValueTypesAssignedToPropertiesRule.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/TypesAssignedToPropertiesRule.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/ThrowTypeRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/VariableCloningRule.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/DeadForeachRule.php";i:1603454189;s:189:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/NumberComparisonOperatorsConstantConditionRule.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/NoopRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/UnreachableStatementRule.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Exceptions/DeadCatchRule.php";i:1603454189;s:185:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/CallToFunctionStamentWithoutSideEffectsRule.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/CallToMethodStamentWithoutSideEffectsRule.php";i:1603454189;s:187:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/CallToStaticMethodStamentWithoutSideEffectsRule.php";i:1603454189;s:187:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideArrowFunctionReturnTypehintRule.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideClosureReturnTypehintRule.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideFunctionReturnTypehintRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/MissingFunctionParameterTypehintRule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/MissingFunctionReturnTypehintRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/MissingMethodParameterTypehintRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/MissingMethodReturnTypehintRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/MissingPropertyTypehintRule.php";i:1603454189;s:176:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/AccessDeprecatedPropertyRule.php";i:1595343150;s:182:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/AccessDeprecatedStaticPropertyRule.php";i:1595343150;s:176:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedFunctionRule.php";i:1595343150;s:174:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedMethodRule.php";i:1595343150;s:180:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedStaticMethodRule.php";i:1595343150;s:187:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/FetchingClassConstOfDeprecatedClassRule.php";i:1595343150;s:175:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/FetchingDeprecatedConstRule.php";i:1595343150;s:187:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/ImplementationOfDeprecatedInterfaceRule.php";i:1595343150;s:180:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InheritanceOfDeprecatedClassRule.php";i:1595343150;s:184:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InheritanceOfDeprecatedInterfaceRule.php";i:1595343150;s:182:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InstantiationOfDeprecatedClassRule.php";i:1595343150;s:192:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInClassMethodSignatureRule.php";i:1595343150;s:188:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInClosureSignatureRule.php";i:1595343150;s:189:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInFunctionSignatureRule.php";i:1595343150;s:173:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/UsageOfDeprecatedCastRule.php";i:1595343150;s:174:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/UsageOfDeprecatedTraitRule.php";i:1595343150;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/BuilderFactory.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/LexerFactory.php";i:1603454189;s:184:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor.php";i:1603454189;s:193:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NodeConnectingVisitor.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Broker/AnonymousClassNameHelper.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Php/PhpVersionFactoryFactory.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/phpstan/phpdoc-parser/src/Lexer/Lexer.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/phpstan/phpdoc-parser/src/Parser/TypeParser.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/phpstan/phpdoc-parser/src/Parser/ConstExprParser.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/phpstan/phpdoc-parser/src/Parser/PhpDocParser.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/PhpDocInheritanceResolver.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/PhpDocNodeResolver.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/PhpDocStringResolver.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/ConstExprNodeResolver.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeAlias/TypeAliasesTypeNodeResolverExtension.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeNodeResolverExtension.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeNodeResolver.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeStringResolver.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/StubValidator.php";i:1603454189;s:143:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/Analyser.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/FileAnalyser.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/IgnoredErrorHelper.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/LazyScopeFactory.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/ScopeFactory.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/NodeScopeResolver.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/ResultCache/ResultCacheClearer.php";i:1603454189;s:137:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Cache/Cache.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/AnalyseApplication.php";i:1603454189;s:148:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/AnalyserRunner.php";i:1603454189;s:150:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/FixerApplication.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/IgnoredRegexValidator.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/DependencyDumper.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/DependencyResolver.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/ExportedNodeFetcher.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/ExportedNodeResolver.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/ExportedNodeVisitor.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Nette/NetteContainer.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Container.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/DerivativeContainerFactory.php";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FileHelper.php";i:1603454189;s:143:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FileExcluder.php";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FileFinder.php";i:1603454189;s:142:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FileMonitor.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/NodeVisitor/StatementOrderVisitor.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parallel/ParallelAnalyser.php";i:1603454189;s:144:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parallel/Scheduler.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/CachedParser.php";i:1603454189;s:139:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/Parser.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/FunctionCallStatementFinder.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/NodeChildrenVisitor.php";i:1603454189;s:148:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Process/CpuCoreCounter.php";i:1603454189;s:191:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Annotations/AnnotationsMethodsClassReflectionExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/MethodsClassReflectionExtension.php";i:1603454189;s:194:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Annotations/AnnotationsPropertiesClassReflectionExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/PropertiesClassReflectionExtension.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/CachingVisitor.php";i:1603454189;s:184:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/FileNodesFetcher.php";i:1603454189;s:189:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/AutoloadSourceLocator.php";i:1603454189;s:196:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/Type/SourceLocator.php";i:1603454189;s:214:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/ComposerJsonAndInstalledJsonSourceLocatorMaker.php";i:1603454189;s:209:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocatorRepository.php";i:1603454189;s:210:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocatorRepository.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Mixin/MixinMethodsClassReflectionExtension.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Mixin/MixinPropertiesClassReflectionExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/PhpClassReflectionExtension.php";i:1603454189;s:186:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/UniversalObjectCratesClassReflectionExtension.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BrokerAwareExtension.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/NativeFunctionReflectionProvider.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/SignatureMapParser.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/FunctionSignatureMapProvider.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/SignatureMapProvider.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/Php8SignatureMapProvider.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/SignatureMapProviderFactory.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/ClassCaseSensitivityCheck.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ConstantConditionRuleHelper.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeHelper.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/FunctionCallParametersCheck.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/FunctionDefinitionCheck.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/FunctionReturnTypeCheck.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/GenericAncestorsCheck.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/GenericObjectTypeCheck.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/TemplateTypeCheck.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/VarianceCheck.php";i:1603454189;s:142:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/IssetCheck.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/MethodSignatureRule.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/MissingTypehintCheck.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/LazyReadWritePropertiesExtensionProvider.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/ReadWritePropertiesExtensionProvider.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/PropertyDescriptor.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/PropertyReflectionFinder.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/RegistryFactory.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/RuleLevelHelper.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/UnusedFunctionParametersCheck.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/FileTypeMapper.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArgumentBasedFunctionReturnTypeExtension.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/DynamicFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayFillFunctionReturnTypeExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayFillKeysFunctionReturnTypeExtension.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayFilterFunctionReturnTypeReturnTypeExtension.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeyDynamicReturnTypeExtension.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeyExistsFunctionTypeSpecifyingExtension.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/FunctionTypeSpecifyingExtension.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/TypeSpecifierAwareExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeyFirstDynamicReturnTypeExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeyLastDynamicReturnTypeExtension.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeysFunctionDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayMapFunctionReturnTypeExtension.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayMergeFunctionDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayPopFunctionReturnTypeExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayReduceFunctionReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayShiftFunctionReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArraySliceFunctionReturnTypeExtension.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArraySearchFunctionDynamicReturnTypeExtension.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayValuesFunctionDynamicReturnTypeExtension.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/Base64DecodeDynamicFunctionReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/BcMathStringOrNullReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ClosureBindDynamicReturnTypeExtension.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/DynamicStaticMethodReturnTypeExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ClosureBindToDynamicReturnTypeExtension.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/DynamicMethodReturnTypeExtension.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ClosureFromCallableDynamicReturnTypeExtension.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/CountFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/CountFunctionTypeSpecifyingExtension.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/CurlInitReturnTypeExtension.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DateFunctionReturnTypeExtension.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DsMapDynamicReturnTypeExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DioStatDynamicFunctionReturnTypeExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ExplodeFunctionDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/FilterVarDynamicReturnTypeExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/GetCalledClassDynamicReturnTypeExtension.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/GetClassDynamicReturnTypeExtension.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/GetParentClassDynamicFunctionReturnTypeExtension.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/GettimeofdayDynamicFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/HashHmacFunctionsReturnTypeExtension.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/HashFunctionsReturnTypeExtension.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/SimpleXMLElementClassPropertyReflectionExtension.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/StatDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MethodExistsTypeSpecifyingExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/PropertyExistsTypeSpecifyingExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MinMaxFunctionReturnTypeExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/PathinfoFunctionDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/PregSplitDynamicReturnTypeExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ReplaceFunctionsDynamicReturnTypeExtension.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayPointerFunctionsDynamicReturnTypeExtension.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/VarExportFunctionDynamicReturnTypeExtension.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MbFunctionsReturnTypeExtension.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MbConvertEncodingFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MicrotimeFunctionReturnTypeExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/HrtimeFunctionReturnTypeExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ParseUrlFunctionDynamicReturnTypeExtension.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/VersionCompareFunctionDynamicReturnTypeExtension.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/PowFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/StrtotimeFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/RandomIntFunctionReturnTypeExtension.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/RangeFunctionReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/AssertFunctionTypeSpecifyingExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ClassExistsFunctionTypeSpecifyingExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DefineConstantTypeSpecifyingExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DefinedConstantTypeSpecifyingExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/InArrayFunctionTypeSpecifyingExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsIntFunctionTypeSpecifyingExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsFloatFunctionTypeSpecifyingExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsNullFunctionTypeSpecifyingExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsArrayFunctionTypeSpecifyingExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsBoolFunctionTypeSpecifyingExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsCallableFunctionTypeSpecifyingExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsCountableFunctionTypeSpecifyingExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsResourceFunctionTypeSpecifyingExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsIterableFunctionTypeSpecifyingExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsStringFunctionTypeSpecifyingExtension.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsSubclassOfFunctionTypeSpecifyingExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsObjectFunctionTypeSpecifyingExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsNumericFunctionTypeSpecifyingExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsScalarFunctionTypeSpecifyingExtension.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsAFunctionTypeSpecifyingExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/JsonThrowOnErrorDynamicReturnTypeExtension.php";i:1603454189;s:184:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/TypeSpecifyingFunctionsDynamicReturnTypeExtension.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/SimpleXMLElementAsXMLMethodReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/StrSplitFunctionReturnTypeExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/SprintfFunctionDynamicReturnTypeExtension.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/StrWordCountFunctionDynamicReturnTypeExtension.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/TypeSpecifierFactory.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/ParentDirectoryRelativePathHelper.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/RelativePathHelper.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Broker/BrokerFactory.php";i:1603454189;s:148:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Cache/FileCacheStorage.php";i:1603454189;s:144:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Cache/CacheStorage.php";i:1603454189;s:143:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/RichParser.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/SimpleParser.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/PhpParserDecorator.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/Parser.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/Parser/Php7.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/ParserAbstract.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/StubPhpDocProvider.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider/ReflectionProviderFactory.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/BetterReflectionProvider.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider.php";i:1603454189;s:187:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/Reflector/MemoizingClassReflector.php";i:1603454189;s:188:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/Reflector/ClassReflector.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/Reflector/Reflector.php";i:1603454189;s:190:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/Reflector/MemoizingFunctionReflector.php";i:1603454189;s:191:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/Reflector/FunctionReflector.php";i:1603454189;s:190:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/Reflector/MemoizingConstantReflector.php";i:1603454189;s:191:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/Reflector/ConstantReflector.php";i:1603454189;s:142:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/file/Read.php";i:1603454189;s:142:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/file/File.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/file/Generic.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/Stream.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Stream.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/event/Listenable.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/event/Source.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Pathable.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Statable.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Touchable.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Bufferable.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Lockable.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Pointable.php";i:1603454189;s:150:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/In.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/event/Listens.php";i:1603454189;s:188:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider/ClassBlacklistReflectionProvider.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Runtime/RuntimeReflectionProvider.php";i:1603454189;s:190:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/BetterReflectionSourceLocatorFactory.php";i:1603454189;s:218:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/PhpStormStubsSourceStubber.php";i:1603454189;s:205:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/SourceStubber.php";i:1603454189;s:215:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/ReflectionSourceStubber.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/Lexer.php";i:1603454189;s:150:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/PathRoutingParser.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/RawErrorFormatter.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/ErrorFormatter.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/BaselineNeonErrorFormatter.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/TableErrorFormatter.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/CheckstyleErrorFormatter.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/JsonErrorFormatter.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/JunitErrorFormatter.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/GitlabErrorFormatter.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/GithubErrorFormatter.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/TeamcityErrorFormatter.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassInInstanceOfRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Exceptions/CaughtExceptionExistenceRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/CallToNonExistentFunctionRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ClosureUsesThisRule.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/CallMethodsRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/CallStaticMethodsRule.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/OverridingMethodRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Missing/MissingClosureNativeReturnTypehintRule.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Missing/MissingReturnRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Namespaces/ExistingNamesInGroupUseRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Namespaces/ExistingNamesInUseRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Operators/InvalidIncDecOperationRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/AccessPropertiesRule.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/AccessStaticPropertiesRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/ExistingClassesInPropertiesRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/UninitializedPropertyRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/WritingToReadOnlyPropertiesRule.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/ReadingWriteOnlyPropertiesRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/CompactVariablesRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/DefinedVariableRule.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Regexp/RegularExpressionPatternRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Whitespace/FileWhitespaceRule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/VariableCertaintyNullCoalesceRule.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/MixinRule.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/CallCallablesRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/InvalidPhpDocVarTagTypeRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/AppendedArrayKeyTypeRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/InvalidKeyInArrayDimFetchRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/InvalidKeyInArrayItemRule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/NonexistentOffsetInArrayDimFetchRule.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ReturnTypeRule.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generators/YieldFromTypeRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generators/YieldInGeneratorRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ImpossibleInstanceOfRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/BooleanAndConstantConditionRule.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/BooleanOrConstantConditionRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/BooleanNotConstantConditionRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/UnusedPrivateConstantRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/UnusedPrivateMethodRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/UnusedPrivatePropertyRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ElseIfConstantConditionRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/IfConstantConditionRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeFunctionCallRule.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeMethodCallRule.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeStaticMethodCallRule.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/StrictComparisonOfDifferentTypesRule.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/TernaryOperatorConstantConditionRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/UnreachableIfBranchesRule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/UnreachableTernaryElseBranchRule.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideMethodReturnTypehintRule.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/IssetRule.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/NullCoalesceRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/RandomIntParametersRule.php";i:1603454189;s:169:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/PhpDoc/PHPUnit/MockObjectTypeNodeResolverExtension.php";i:1596634130;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeNodeResolverAwareExtension.php";i:1603454189;s:176:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertFunctionTypeSpecifyingExtension.php";i:1596634130;s:174:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertMethodTypeSpecifyingExtension.php";i:1596634130;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/MethodTypeSpecifyingExtension.php";i:1603454189;s:180:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertStaticMethodTypeSpecifyingExtension.php";i:1596634130;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/StaticMethodTypeSpecifyingExtension.php";i:1603454189;s:174:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/InvocationMockerDynamicReturnTypeExtension.php";i:1596634130;s:169:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/MockBuilderDynamicReturnTypeExtension.php";i:1596634130;s:168:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/MockObjectDynamicReturnTypeExtension.php";i:1596634130;s:169:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/DeprecatedClassHelper.php";i:1595343150;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/StubSourceLocatorFactory.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Container.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/utils/src/Utils/SmartObject.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Php/PhpVersionFactory.php";i:1603454189;s:140:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Php/PhpVersion.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/LazyTypeNodeResolverExtensionRegistryProvider.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeNodeResolverExtensionRegistryProvider.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/ResultCache/ResultCacheManager.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/ResultCache/ResultCacheManagerFactory.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/MemoizingContainer.php";i:1603454189;s:201:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Reflection/LazyClassReflectionExtensionRegistryProvider.php";i:1603454189;s:197:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Reflection/ClassReflectionExtensionRegistryProvider.php";i:1603454189;s:197:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Type/LazyDynamicReturnTypeExtensionRegistryProvider.php";i:1603454189;s:193:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Type/DynamicReturnTypeExtensionRegistryProvider.php";i:1603454189;s:202:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Type/LazyOperatorTypeSpecifyingExtensionRegistryProvider.php";i:1603454189;s:198:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Type/OperatorTypeSpecifyingExtensionRegistryProvider.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/PhpFunctionReflection.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/FunctionReflection.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionWithFilename.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/FunctionReflectionFactory.php";i:1603454189;s:199:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocator.php";i:1603454189;s:206:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocatorFactory.php";i:1603454189;s:197:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedPsrAutoloaderLocator.php";i:1603454189;s:204:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedPsrAutoloaderLocatorFactory.php";i:1603454189;s:200:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocator.php";i:1603454189;s:207:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocatorFactory.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/PhpMethodReflection.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/MethodReflection.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ClassMemberReflection.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/PhpMethodReflectionFactory.php";i:1603454189;s:186:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider/LazyReflectionProviderProvider.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider/ReflectionProviderProvider.php";i:1603454189;s:148:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/TypeSpecifier.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FuzzyRelativePathHelper.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/SimpleRelativePathHelper.php";i:1603454189;s:139:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Broker/Broker.php";i:1603454189;s:140:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Registry.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/compiler/Llk/Llk.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/compiler/Llk/Parser.php";i:1603454189;s:185:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/BetterReflectionProviderFactory.php";i:1603454189;}i:3;a:436:{i:0;s:53:"PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule";i:1;s:18:"PHPStan\Rules\Rule";i:2;s:57:"PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule";i:3;s:39:"PHPStan\Rules\Classes\ClassConstantRule";i:4;s:46:"PHPStan\Rules\Classes\DuplicateDeclarationRule";i:5;s:58:"PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule";i:6;s:59:"PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule";i:7;s:53:"PHPStan\Rules\Classes\ExistingClassInClassExtendsRule";i:8;s:49:"PHPStan\Rules\Classes\ExistingClassInTraitUseRule";i:9;s:39:"PHPStan\Rules\Classes\InstantiationRule";i:10;s:35:"PHPStan\Rules\Classes\NewStaticRule";i:11;s:44:"PHPStan\Rules\Exceptions\ThrowExpressionRule";i:12;s:52:"PHPStan\Rules\Functions\CallToFunctionParametersRule";i:13;s:67:"PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule";i:14;s:61:"PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule";i:15;s:54:"PHPStan\Rules\Functions\ExistingClassesInTypehintsRule";i:16;s:41:"PHPStan\Rules\Functions\InnerFunctionRule";i:17;s:44:"PHPStan\Rules\Functions\PrintfParametersRule";i:18;s:58:"PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule";i:19;s:52:"PHPStan\Rules\Methods\ExistingClassesInTypehintsRule";i:20;s:53:"PHPStan\Rules\Methods\MissingMethodImplementationRule";i:21;s:53:"PHPStan\Rules\Properties\AccessPropertiesInAssignRule";i:22;s:59:"PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule";i:23;s:60:"PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule";i:24;s:33:"PHPStan\Rules\Variables\UnsetRule";i:25;s:53:"PHPStan\Rules\Classes\UnusedConstructorParametersRule";i:26;s:36:"PHPStan\Rules\Constants\ConstantRule";i:27;s:45:"PHPStan\Rules\Functions\UnusedClosureUsesRule";i:28;s:52:"PHPStan\Rules\Variables\VariableCertaintyInIssetRule";i:29;s:27:"PHPStan\Rules\Cast\EchoRule";i:30;s:34:"PHPStan\Rules\Cast\InvalidCastRule";i:31;s:50:"PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule";i:32;s:28:"PHPStan\Rules\Cast\PrintRule";i:33;s:60:"PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule";i:34;s:41:"PHPStan\Rules\Generics\ClassAncestorsRule";i:35;s:44:"PHPStan\Rules\Generics\ClassTemplateTypeRule";i:36;s:47:"PHPStan\Rules\Generics\FunctionTemplateTypeRule";i:37;s:52:"PHPStan\Rules\Generics\FunctionSignatureVarianceRule";i:38;s:45:"PHPStan\Rules\Generics\InterfaceAncestorsRule";i:39;s:48:"PHPStan\Rules\Generics\InterfaceTemplateTypeRule";i:40;s:45:"PHPStan\Rules\Generics\MethodTemplateTypeRule";i:41;s:50:"PHPStan\Rules\Generics\MethodSignatureVarianceRule";i:42;s:44:"PHPStan\Rules\Generics\TraitTemplateTypeRule";i:43;s:58:"PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule";i:44;s:50:"PHPStan\Rules\Operators\InvalidBinaryOperationRule";i:45;s:49:"PHPStan\Rules\Operators\InvalidUnaryOperationRule";i:46;s:54:"PHPStan\Rules\Operators\InvalidComparisonOperationRule";i:47;s:47:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule";i:48;s:55:"PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule";i:49;s:46:"PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule";i:50;s:45:"PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule";i:51;s:49:"PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule";i:52;s:50:"PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule";i:53;s:46:"PHPStan\Rules\Arrays\AppendedArrayItemTypeRule";i:54;s:42:"PHPStan\Rules\Arrays\IterableInForeachRule";i:55;s:47:"PHPStan\Rules\Arrays\OffsetAccessAssignmentRule";i:56;s:45:"PHPStan\Rules\Arrays\OffsetAccessAssignOpRule";i:57;s:52:"PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule";i:58;s:46:"PHPStan\Rules\Arrays\UnpackIterableInArrayRule";i:59;s:51:"PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule";i:60;s:45:"PHPStan\Rules\Functions\ClosureReturnTypeRule";i:61;s:38:"PHPStan\Rules\Generators\YieldTypeRule";i:62;s:36:"PHPStan\Rules\Methods\ReturnTypeRule";i:63;s:66:"PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule";i:64;s:54:"PHPStan\Rules\Properties\TypesAssignedToPropertiesRule";i:65;s:37:"PHPStan\Rules\Variables\ThrowTypeRule";i:66;s:43:"PHPStan\Rules\Variables\VariableCloningRule";i:67;s:36:"PHPStan\Rules\Arrays\DeadForeachRule";i:68;s:71:"PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule";i:69;s:31:"PHPStan\Rules\DeadCode\NoopRule";i:70;s:47:"PHPStan\Rules\DeadCode\UnreachableStatementRule";i:71;s:38:"PHPStan\Rules\Exceptions\DeadCatchRule";i:72;s:67:"PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule";i:73;s:63:"PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule";i:74;s:69:"PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule";i:75;s:69:"PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule";i:76;s:63:"PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule";i:77;s:64:"PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule";i:78;s:60:"PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule";i:79;s:57:"PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule";i:80;s:56:"PHPStan\Rules\Methods\MissingMethodParameterTypehintRule";i:81;s:53:"PHPStan\Rules\Methods\MissingMethodReturnTypehintRule";i:82;s:52:"PHPStan\Rules\Properties\MissingPropertyTypehintRule";i:83;s:55:"PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule";i:84;s:61:"PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule";i:85;s:55:"PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule";i:86;s:53:"PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule";i:87;s:59:"PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule";i:88;s:66:"PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule";i:89;s:54:"PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule";i:90;s:66:"PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule";i:91;s:59:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule";i:92;s:63:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule";i:93;s:61:"PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule";i:94;s:71:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule";i:95;s:67:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule";i:96;s:68:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule";i:97;s:52:"PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule";i:98;s:53:"PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule";i:99;s:24:"PhpParser\BuilderFactory";i:100;s:27:"PHPStan\Parser\LexerFactory";i:101;s:34:"PhpParser\NodeVisitor\NameResolver";i:102;s:29:"PhpParser\NodeVisitorAbstract";i:103;s:21:"PhpParser\NodeVisitor";i:104;s:43:"PhpParser\NodeVisitor\NodeConnectingVisitor";i:105;s:32:"PhpParser\PrettyPrinter\Standard";i:106;s:31:"PhpParser\PrettyPrinterAbstract";i:107;s:39:"PHPStan\Broker\AnonymousClassNameHelper";i:108;s:36:"PHPStan\Php\PhpVersionFactoryFactory";i:109;s:32:"PHPStan\PhpDocParser\Lexer\Lexer";i:110;s:38:"PHPStan\PhpDocParser\Parser\TypeParser";i:111;s:43:"PHPStan\PhpDocParser\Parser\ConstExprParser";i:112;s:40:"PHPStan\PhpDocParser\Parser\PhpDocParser";i:113;s:40:"PHPStan\PhpDoc\PhpDocInheritanceResolver";i:114;s:33:"PHPStan\PhpDoc\PhpDocNodeResolver";i:115;s:35:"PHPStan\PhpDoc\PhpDocStringResolver";i:116;s:36:"PHPStan\PhpDoc\ConstExprNodeResolver";i:117;s:61:"PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension";i:118;s:40:"PHPStan\PhpDoc\TypeNodeResolverExtension";i:119;s:31:"PHPStan\PhpDoc\TypeNodeResolver";i:120;s:33:"PHPStan\PhpDoc\TypeStringResolver";i:121;s:28:"PHPStan\PhpDoc\StubValidator";i:122;s:25:"PHPStan\Analyser\Analyser";i:123;s:29:"PHPStan\Analyser\FileAnalyser";i:124;s:35:"PHPStan\Analyser\IgnoredErrorHelper";i:125;s:33:"PHPStan\Analyser\LazyScopeFactory";i:126;s:29:"PHPStan\Analyser\ScopeFactory";i:127;s:34:"PHPStan\Analyser\NodeScopeResolver";i:128;s:47:"PHPStan\Analyser\ResultCache\ResultCacheClearer";i:129;s:19:"PHPStan\Cache\Cache";i:130;s:34:"PHPStan\Command\AnalyseApplication";i:131;s:30:"PHPStan\Command\AnalyserRunner";i:132;s:32:"PHPStan\Command\FixerApplication";i:133;s:37:"PHPStan\Command\IgnoredRegexValidator";i:134;s:35:"PHPStan\Dependency\DependencyDumper";i:135;s:37:"PHPStan\Dependency\DependencyResolver";i:136;s:38:"PHPStan\Dependency\ExportedNodeFetcher";i:137;s:39:"PHPStan\Dependency\ExportedNodeResolver";i:138;s:38:"PHPStan\Dependency\ExportedNodeVisitor";i:139;s:48:"PHPStan\DependencyInjection\Nette\NetteContainer";i:140;s:37:"PHPStan\DependencyInjection\Container";i:141;s:54:"PHPStan\DependencyInjection\DerivativeContainerFactory";i:142;s:23:"PHPStan\File\FileHelper";i:143;s:25:"PHPStan\File\FileExcluder";i:144;s:23:"PHPStan\File\FileFinder";i:145;s:24:"PHPStan\File\FileMonitor";i:146;s:41:"PHPStan\NodeVisitor\StatementOrderVisitor";i:147;s:33:"PHPStan\Parallel\ParallelAnalyser";i:148;s:26:"PHPStan\Parallel\Scheduler";i:149;s:27:"PHPStan\Parser\CachedParser";i:150;s:21:"PHPStan\Parser\Parser";i:151;s:42:"PHPStan\Parser\FunctionCallStatementFinder";i:152;s:34:"PHPStan\Parser\NodeChildrenVisitor";i:153;s:30:"PHPStan\Process\CpuCoreCounter";i:154;s:73:"PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension";i:155;s:50:"PHPStan\Reflection\MethodsClassReflectionExtension";i:156;s:76:"PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension";i:157;s:53:"PHPStan\Reflection\PropertiesClassReflectionExtension";i:158;s:64:"PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor";i:159;s:66:"PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher";i:160;s:71:"PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator";i:161;s:78:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\SourceLocator";i:162;s:96:"PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker";i:163;s:91:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository";i:164;s:92:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository";i:165;s:61:"PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension";i:166;s:64:"PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension";i:167;s:50:"PHPStan\Reflection\Php\PhpClassReflectionExtension";i:168;s:68:"PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension";i:169;s:39:"PHPStan\Reflection\BrokerAwareExtension";i:170;s:64:"PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider";i:171;s:50:"PHPStan\Reflection\SignatureMap\SignatureMapParser";i:172;s:60:"PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider";i:173;s:52:"PHPStan\Reflection\SignatureMap\SignatureMapProvider";i:174;s:56:"PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider";i:175;s:59:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory";i:176;s:39:"PHPStan\Rules\ClassCaseSensitivityCheck";i:177;s:52:"PHPStan\Rules\Comparison\ConstantConditionRuleHelper";i:178;s:50:"PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper";i:179;s:41:"PHPStan\Rules\FunctionCallParametersCheck";i:180;s:37:"PHPStan\Rules\FunctionDefinitionCheck";i:181;s:37:"PHPStan\Rules\FunctionReturnTypeCheck";i:182;s:44:"PHPStan\Rules\Generics\GenericAncestorsCheck";i:183;s:45:"PHPStan\Rules\Generics\GenericObjectTypeCheck";i:184;s:40:"PHPStan\Rules\Generics\TemplateTypeCheck";i:185;s:36:"PHPStan\Rules\Generics\VarianceCheck";i:186;s:24:"PHPStan\Rules\IssetCheck";i:187;s:41:"PHPStan\Rules\Methods\MethodSignatureRule";i:188;s:34:"PHPStan\Rules\MissingTypehintCheck";i:189;s:65:"PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider";i:190;s:61:"PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider";i:191;s:43:"PHPStan\Rules\Properties\PropertyDescriptor";i:192;s:49:"PHPStan\Rules\Properties\PropertyReflectionFinder";i:193;s:29:"PHPStan\Rules\RegistryFactory";i:194;s:29:"PHPStan\Rules\RuleLevelHelper";i:195;s:43:"PHPStan\Rules\UnusedFunctionParametersCheck";i:196;s:27:"PHPStan\Type\FileTypeMapper";i:197;s:57:"PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension";i:198;s:47:"PHPStan\Type\DynamicFunctionReturnTypeExtension";i:199;s:53:"PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension";i:200;s:57:"PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension";i:201;s:65:"PHPStan\Type\Php\ArrayFilterFunctionReturnTypeReturnTypeExtension";i:202;s:51:"PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension";i:203;s:62:"PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension";i:204;s:44:"PHPStan\Type\FunctionTypeSpecifyingExtension";i:205;s:44:"PHPStan\Analyser\TypeSpecifierAwareExtension";i:206;s:56:"PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension";i:207;s:55:"PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension";i:208;s:60:"PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension";i:209;s:52:"PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension";i:210;s:61:"PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension";i:211;s:52:"PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension";i:212;s:55:"PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension";i:213;s:54:"PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension";i:214;s:54:"PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension";i:215;s:62:"PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension";i:216;s:62:"PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension";i:217;s:63:"PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension";i:218;s:54:"PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension";i:219;s:54:"PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension";i:220;s:51:"PHPStan\Type\DynamicStaticMethodReturnTypeExtension";i:221;s:56:"PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension";i:222;s:45:"PHPStan\Type\DynamicMethodReturnTypeExtension";i:223;s:62:"PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension";i:224;s:49:"PHPStan\Type\Php\CountFunctionReturnTypeExtension";i:225;s:53:"PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension";i:226;s:44:"PHPStan\Type\Php\CurlInitReturnTypeExtension";i:227;s:48:"PHPStan\Type\Php\DateFunctionReturnTypeExtension";i:228;s:48:"PHPStan\Type\Php\DsMapDynamicReturnTypeExtension";i:229;s:58:"PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension";i:230;s:58:"PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension";i:231;s:52:"PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension";i:232;s:57:"PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension";i:233;s:51:"PHPStan\Type\Php\GetClassDynamicReturnTypeExtension";i:234;s:65:"PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension";i:235;s:63:"PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension";i:236;s:53:"PHPStan\Type\Php\HashHmacFunctionsReturnTypeExtension";i:237;s:49:"PHPStan\Type\Php\HashFunctionsReturnTypeExtension";i:238;s:65:"PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension";i:239;s:47:"PHPStan\Type\Php\StatDynamicReturnTypeExtension";i:240;s:52:"PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension";i:241;s:54:"PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension";i:242;s:50:"PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension";i:243;s:59:"PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension";i:244;s:52:"PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension";i:245;s:59:"PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension";i:246;s:64:"PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension";i:247;s:60:"PHPStan\Type\Php\VarExportFunctionDynamicReturnTypeExtension";i:248;s:47:"PHPStan\Type\Php\MbFunctionsReturnTypeExtension";i:249;s:61:"PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension";i:250;s:53:"PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension";i:251;s:50:"PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension";i:252;s:59:"PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension";i:253;s:65:"PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension";i:254;s:47:"PHPStan\Type\Php\PowFunctionReturnTypeExtension";i:255;s:53:"PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension";i:256;s:53:"PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension";i:257;s:49:"PHPStan\Type\Php\RangeFunctionReturnTypeExtension";i:258;s:54:"PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension";i:259;s:59:"PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension";i:260;s:54:"PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension";i:261;s:55:"PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension";i:262;s:55:"PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension";i:263;s:53:"PHPStan\Type\Php\IsIntFunctionTypeSpecifyingExtension";i:264;s:55:"PHPStan\Type\Php\IsFloatFunctionTypeSpecifyingExtension";i:265;s:54:"PHPStan\Type\Php\IsNullFunctionTypeSpecifyingExtension";i:266;s:55:"PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension";i:267;s:54:"PHPStan\Type\Php\IsBoolFunctionTypeSpecifyingExtension";i:268;s:58:"PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension";i:269;s:59:"PHPStan\Type\Php\IsCountableFunctionTypeSpecifyingExtension";i:270;s:58:"PHPStan\Type\Php\IsResourceFunctionTypeSpecifyingExtension";i:271;s:58:"PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension";i:272;s:56:"PHPStan\Type\Php\IsStringFunctionTypeSpecifyingExtension";i:273;s:60:"PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension";i:274;s:56:"PHPStan\Type\Php\IsObjectFunctionTypeSpecifyingExtension";i:275;s:57:"PHPStan\Type\Php\IsNumericFunctionTypeSpecifyingExtension";i:276;s:56:"PHPStan\Type\Php\IsScalarFunctionTypeSpecifyingExtension";i:277;s:51:"PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension";i:278;s:59:"PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension";i:279;s:66:"PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension";i:280;s:63:"PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension";i:281;s:52:"PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension";i:282;s:58:"PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension";i:283;s:63:"PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension";i:284;s:37:"PHPStan\Analyser\TypeSpecifierFactory";i:285;s:46:"PHPStan\File\ParentDirectoryRelativePathHelper";i:286;s:31:"PHPStan\File\RelativePathHelper";i:287;s:28:"PHPStan\Broker\BrokerFactory";i:288;s:30:"PHPStan\Cache\FileCacheStorage";i:289;s:26:"PHPStan\Cache\CacheStorage";i:290;s:25:"PHPStan\Parser\RichParser";i:291;s:27:"PHPStan\Parser\SimpleParser";i:292;s:33:"PHPStan\Parser\PhpParserDecorator";i:293;s:16:"PhpParser\Parser";i:294;s:21:"PhpParser\Parser\Php7";i:295;s:24:"PhpParser\ParserAbstract";i:296;s:33:"PHPStan\PhpDoc\StubPhpDocProvider";i:297;s:63:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory";i:298;s:60:"PHPStan\Reflection\BetterReflection\BetterReflectionProvider";i:299;s:37:"PHPStan\Reflection\ReflectionProvider";i:300;s:69:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector";i:301;s:70:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector";i:302;s:65:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\Reflector";i:303;s:72:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingFunctionReflector";i:304;s:73:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector";i:305;s:72:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingConstantReflector";i:306;s:73:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector";i:307;s:13:"Hoa\File\Read";i:308;s:13:"Hoa\File\File";i:309;s:16:"Hoa\File\Generic";i:310;s:17:"Hoa\Stream\Stream";i:311;s:25:"Hoa\Stream\IStream\Stream";i:312;s:20:"Hoa\Event\Listenable";i:313;s:16:"Hoa\Event\Source";i:314;s:27:"Hoa\Stream\IStream\Pathable";i:315;s:27:"Hoa\Stream\IStream\Statable";i:316;s:28:"Hoa\Stream\IStream\Touchable";i:317;s:29:"Hoa\Stream\IStream\Bufferable";i:318;s:27:"Hoa\Stream\IStream\Lockable";i:319;s:28:"Hoa\Stream\IStream\Pointable";i:320;s:21:"Hoa\Stream\IStream\In";i:321;s:17:"Hoa\Event\Listens";i:322;s:70:"PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider";i:323;s:52:"PHPStan\Reflection\Runtime\RuntimeReflectionProvider";i:324;s:72:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory";i:325;s:100:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber";i:326;s:87:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\SourceStubber";i:327;s:97:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber";i:328;s:25:"PhpParser\Lexer\Emulative";i:329;s:15:"PhpParser\Lexer";i:330;s:32:"PHPStan\Parser\PathRoutingParser";i:331;s:48:"PHPStan\Command\ErrorFormatter\RawErrorFormatter";i:332;s:45:"PHPStan\Command\ErrorFormatter\ErrorFormatter";i:333;s:57:"PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter";i:334;s:50:"PHPStan\Command\ErrorFormatter\TableErrorFormatter";i:335;s:55:"PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter";i:336;s:49:"PHPStan\Command\ErrorFormatter\JsonErrorFormatter";i:337;s:50:"PHPStan\Command\ErrorFormatter\JunitErrorFormatter";i:338;s:51:"PHPStan\Command\ErrorFormatter\GitlabErrorFormatter";i:339;s:51:"PHPStan\Command\ErrorFormatter\GithubErrorFormatter";i:340;s:53:"PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter";i:341;s:51:"PHPStan\Rules\Classes\ExistingClassInInstanceOfRule";i:342;s:53:"PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule";i:343;s:53:"PHPStan\Rules\Functions\CallToNonExistentFunctionRule";i:344;s:43:"PHPStan\Rules\Functions\ClosureUsesThisRule";i:345;s:37:"PHPStan\Rules\Methods\CallMethodsRule";i:346;s:43:"PHPStan\Rules\Methods\CallStaticMethodsRule";i:347;s:42:"PHPStan\Rules\Methods\OverridingMethodRule";i:348;s:60:"PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule";i:349;s:39:"PHPStan\Rules\Missing\MissingReturnRule";i:350;s:52:"PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule";i:351;s:47:"PHPStan\Rules\Namespaces\ExistingNamesInUseRule";i:352;s:50:"PHPStan\Rules\Operators\InvalidIncDecOperationRule";i:353;s:45:"PHPStan\Rules\Properties\AccessPropertiesRule";i:354;s:51:"PHPStan\Rules\Properties\AccessStaticPropertiesRule";i:355;s:56:"PHPStan\Rules\Properties\ExistingClassesInPropertiesRule";i:356;s:50:"PHPStan\Rules\Properties\UninitializedPropertyRule";i:357;s:56:"PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule";i:358;s:55:"PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule";i:359;s:44:"PHPStan\Rules\Variables\CompactVariablesRule";i:360;s:43:"PHPStan\Rules\Variables\DefinedVariableRule";i:361;s:49:"PHPStan\Rules\Regexp\RegularExpressionPatternRule";i:362;s:43:"PHPStan\Rules\Whitespace\FileWhitespaceRule";i:363;s:57:"PHPStan\Rules\Variables\VariableCertaintyNullCoalesceRule";i:364;s:31:"PHPStan\Rules\Classes\MixinRule";i:365;s:41:"PHPStan\Rules\Functions\CallCallablesRule";i:366;s:48:"PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule";i:367;s:45:"PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule";i:368;s:50:"PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule";i:369;s:46:"PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule";i:370;s:57:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule";i:371;s:38:"PHPStan\Rules\Functions\ReturnTypeRule";i:372;s:42:"PHPStan\Rules\Generators\YieldFromTypeRule";i:373;s:45:"PHPStan\Rules\Generators\YieldInGeneratorRule";i:374;s:46:"PHPStan\Rules\Classes\ImpossibleInstanceOfRule";i:375;s:56:"PHPStan\Rules\Comparison\BooleanAndConstantConditionRule";i:376;s:55:"PHPStan\Rules\Comparison\BooleanOrConstantConditionRule";i:377;s:56:"PHPStan\Rules\Comparison\BooleanNotConstantConditionRule";i:378;s:48:"PHPStan\Rules\DeadCode\UnusedPrivateConstantRule";i:379;s:46:"PHPStan\Rules\DeadCode\UnusedPrivateMethodRule";i:380;s:48:"PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule";i:381;s:52:"PHPStan\Rules\Comparison\ElseIfConstantConditionRule";i:382;s:48:"PHPStan\Rules\Comparison\IfConstantConditionRule";i:383;s:60:"PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule";i:384;s:58:"PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule";i:385;s:64:"PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule";i:386;s:61:"PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule";i:387;s:61:"PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule";i:388;s:50:"PHPStan\Rules\Comparison\UnreachableIfBranchesRule";i:389;s:57:"PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule";i:390;s:62:"PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule";i:391;s:33:"PHPStan\Rules\Variables\IssetRule";i:392;s:40:"PHPStan\Rules\Variables\NullCoalesceRule";i:393;s:47:"PHPStan\Rules\Functions\RandomIntParametersRule";i:394;s:58:"PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension";i:395;s:45:"PHPStan\PhpDoc\TypeNodeResolverAwareExtension";i:396;s:65:"PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension";i:397;s:63:"PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension";i:398;s:42:"PHPStan\Type\MethodTypeSpecifyingExtension";i:399;s:69:"PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension";i:400;s:48:"PHPStan\Type\StaticMethodTypeSpecifyingExtension";i:401;s:63:"PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension";i:402;s:58:"PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension";i:403;s:57:"PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension";i:404;s:48:"PHPStan\Rules\Deprecations\DeprecatedClassHelper";i:405;s:39:"PHPStan\PhpDoc\StubSourceLocatorFactory";i:406;s:41:"_HumbugBox96739a27ace4\Nette\DI\Container";i:407;s:40:"_HumbugBox96739a27ace4\Nette\SmartObject";i:408;s:22:"PHPStan\Php\PhpVersion";i:409;s:29:"PHPStan\Php\PhpVersionFactory";i:410;s:56:"PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider";i:411;s:47:"PHPStan\Analyser\ResultCache\ResultCacheManager";i:412;s:54:"PHPStan\Analyser\ResultCache\ResultCacheManagerFactory";i:413;s:79:"PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider";i:414;s:75:"PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider";i:415;s:80:"PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider";i:416;s:44:"PHPStan\Reflection\Php\PhpFunctionReflection";i:417;s:37:"PHPStan\Reflection\FunctionReflection";i:418;s:41:"PHPStan\Reflection\ReflectionWithFilename";i:419;s:44:"PHPStan\Reflection\FunctionReflectionFactory";i:420;s:81:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocator";i:421;s:88:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory";i:422;s:79:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator";i:423;s:86:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory";i:424;s:82:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator";i:425;s:89:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory";i:426;s:42:"PHPStan\Reflection\Php\PhpMethodReflection";i:427;s:35:"PHPStan\Reflection\MethodReflection";i:428;s:40:"PHPStan\Reflection\ClassMemberReflection";i:429;s:49:"PHPStan\Reflection\Php\PhpMethodReflectionFactory";i:430;s:64:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider";i:431;s:30:"PHPStan\Analyser\TypeSpecifier";i:432;s:21:"PHPStan\Broker\Broker";i:433;s:22:"PHPStan\Rules\Registry";i:434;s:23:"Hoa\Compiler\Llk\Parser";i:435;s:67:"PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory";}i:4;a:258:{i:0;s:66:"PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule::__construct";i:1;s:52:"PHPStan\Rules\Classes\ClassConstantRule::__construct";i:2;s:71:"PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule::__construct";i:3;s:72:"PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule::__construct";i:4;s:66:"PHPStan\Rules\Classes\ExistingClassInClassExtendsRule::__construct";i:5;s:62:"PHPStan\Rules\Classes\ExistingClassInTraitUseRule::__construct";i:6;s:52:"PHPStan\Rules\Classes\InstantiationRule::__construct";i:7;s:57:"PHPStan\Rules\Exceptions\ThrowExpressionRule::__construct";i:8;s:65:"PHPStan\Rules\Functions\CallToFunctionParametersRule::__construct";i:9;s:80:"PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule::__construct";i:10;s:74:"PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule::__construct";i:11;s:67:"PHPStan\Rules\Functions\ExistingClassesInTypehintsRule::__construct";i:12;s:65:"PHPStan\Rules\Methods\ExistingClassesInTypehintsRule::__construct";i:13;s:66:"PHPStan\Rules\Properties\AccessPropertiesInAssignRule::__construct";i:14;s:72:"PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule::__construct";i:15;s:73:"PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule::__construct";i:16;s:66:"PHPStan\Rules\Classes\UnusedConstructorParametersRule::__construct";i:17;s:58:"PHPStan\Rules\Functions\UnusedClosureUsesRule::__construct";i:18;s:40:"PHPStan\Rules\Cast\EchoRule::__construct";i:19;s:47:"PHPStan\Rules\Cast\InvalidCastRule::__construct";i:20;s:63:"PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule::__construct";i:21;s:41:"PHPStan\Rules\Cast\PrintRule::__construct";i:22;s:54:"PHPStan\Rules\Generics\ClassAncestorsRule::__construct";i:23;s:57:"PHPStan\Rules\Generics\ClassTemplateTypeRule::__construct";i:24;s:60:"PHPStan\Rules\Generics\FunctionTemplateTypeRule::__construct";i:25;s:65:"PHPStan\Rules\Generics\FunctionSignatureVarianceRule::__construct";i:26;s:58:"PHPStan\Rules\Generics\InterfaceAncestorsRule::__construct";i:27;s:61:"PHPStan\Rules\Generics\InterfaceTemplateTypeRule::__construct";i:28;s:58:"PHPStan\Rules\Generics\MethodTemplateTypeRule::__construct";i:29;s:63:"PHPStan\Rules\Generics\MethodSignatureVarianceRule::__construct";i:30;s:57:"PHPStan\Rules\Generics\TraitTemplateTypeRule::__construct";i:31;s:63:"PHPStan\Rules\Operators\InvalidBinaryOperationRule::__construct";i:32;s:67:"PHPStan\Rules\Operators\InvalidComparisonOperationRule::__construct";i:33;s:60:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule::__construct";i:34;s:68:"PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule::__construct";i:35;s:59:"PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule::__construct";i:36;s:58:"PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule::__construct";i:37;s:62:"PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule::__construct";i:38;s:63:"PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule::__construct";i:39;s:59:"PHPStan\Rules\Arrays\AppendedArrayItemTypeRule::__construct";i:40;s:55:"PHPStan\Rules\Arrays\IterableInForeachRule::__construct";i:41;s:60:"PHPStan\Rules\Arrays\OffsetAccessAssignmentRule::__construct";i:42;s:58:"PHPStan\Rules\Arrays\OffsetAccessAssignOpRule::__construct";i:43;s:65:"PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule::__construct";i:44;s:59:"PHPStan\Rules\Arrays\UnpackIterableInArrayRule::__construct";i:45;s:64:"PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule::__construct";i:46;s:58:"PHPStan\Rules\Functions\ClosureReturnTypeRule::__construct";i:47;s:51:"PHPStan\Rules\Generators\YieldTypeRule::__construct";i:48;s:49:"PHPStan\Rules\Methods\ReturnTypeRule::__construct";i:49;s:79:"PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule::__construct";i:50;s:67:"PHPStan\Rules\Properties\TypesAssignedToPropertiesRule::__construct";i:51;s:50:"PHPStan\Rules\Variables\ThrowTypeRule::__construct";i:52;s:56:"PHPStan\Rules\Variables\VariableCloningRule::__construct";i:53;s:44:"PHPStan\Rules\DeadCode\NoopRule::__construct";i:54;s:80:"PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule::__construct";i:55;s:76:"PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule::__construct";i:56;s:82:"PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule::__construct";i:57;s:73:"PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule::__construct";i:58;s:70:"PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule::__construct";i:59;s:69:"PHPStan\Rules\Methods\MissingMethodParameterTypehintRule::__construct";i:60;s:66:"PHPStan\Rules\Methods\MissingMethodReturnTypehintRule::__construct";i:61;s:65:"PHPStan\Rules\Properties\MissingPropertyTypehintRule::__construct";i:62;s:68:"PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule::__construct";i:63;s:74:"PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule::__construct";i:64;s:68:"PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule::__construct";i:65;s:66:"PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule::__construct";i:66;s:72:"PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule::__construct";i:67;s:79:"PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule::__construct";i:68;s:67:"PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule::__construct";i:69;s:79:"PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule::__construct";i:70;s:72:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule::__construct";i:71;s:76:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule::__construct";i:72;s:74:"PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule::__construct";i:73;s:84:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule::__construct";i:74;s:80:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule::__construct";i:75;s:81:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule::__construct";i:76;s:66:"PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule::__construct";i:77;s:40:"PHPStan\Parser\LexerFactory::__construct";i:78;s:47:"PhpParser\NodeVisitor\NameResolver::__construct";i:79;s:44:"PhpParser\PrettyPrinterAbstract::__construct";i:80;s:52:"PHPStan\Broker\AnonymousClassNameHelper::__construct";i:81;s:37:"PHPStan\Php\PhpVersionFactory::create";i:82;s:44:"PHPStan\Php\PhpVersionFactoryFactory::create";i:83;s:49:"PHPStan\Php\PhpVersionFactoryFactory::__construct";i:84;s:51:"PHPStan\PhpDocParser\Parser\TypeParser::__construct";i:85;s:53:"PHPStan\PhpDocParser\Parser\PhpDocParser::__construct";i:86;s:53:"PHPStan\PhpDoc\PhpDocInheritanceResolver::__construct";i:87;s:46:"PHPStan\PhpDoc\PhpDocNodeResolver::__construct";i:88;s:48:"PHPStan\PhpDoc\PhpDocStringResolver::__construct";i:89;s:74:"PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension::__construct";i:90;s:44:"PHPStan\PhpDoc\TypeNodeResolver::__construct";i:91;s:73:"PHPStan\PhpDoc\LazyTypeNodeResolverExtensionRegistryProvider::__construct";i:92;s:46:"PHPStan\PhpDoc\TypeStringResolver::__construct";i:93;s:41:"PHPStan\PhpDoc\StubValidator::__construct";i:94;s:38:"PHPStan\Analyser\Analyser::__construct";i:95;s:42:"PHPStan\Analyser\FileAnalyser::__construct";i:96;s:48:"PHPStan\Analyser\IgnoredErrorHelper::__construct";i:97;s:46:"PHPStan\Analyser\LazyScopeFactory::__construct";i:98;s:47:"PHPStan\Analyser\NodeScopeResolver::__construct";i:99;s:60:"PHPStan\Analyser\ResultCache\ResultCacheManager::__construct";i:100;s:60:"PHPStan\Analyser\ResultCache\ResultCacheClearer::__construct";i:101;s:32:"PHPStan\Cache\Cache::__construct";i:102;s:47:"PHPStan\Command\AnalyseApplication::__construct";i:103;s:43:"PHPStan\Command\AnalyserRunner::__construct";i:104;s:45:"PHPStan\Command\FixerApplication::__construct";i:105;s:50:"PHPStan\Command\IgnoredRegexValidator::__construct";i:106;s:48:"PHPStan\Dependency\DependencyDumper::__construct";i:107;s:50:"PHPStan\Dependency\DependencyResolver::__construct";i:108;s:51:"PHPStan\Dependency\ExportedNodeFetcher::__construct";i:109;s:52:"PHPStan\Dependency\ExportedNodeResolver::__construct";i:110;s:51:"PHPStan\Dependency\ExportedNodeVisitor::__construct";i:111;s:59:"PHPStan\DependencyInjection\MemoizingContainer::__construct";i:112;s:61:"PHPStan\DependencyInjection\Nette\NetteContainer::__construct";i:113;s:67:"PHPStan\DependencyInjection\DerivativeContainerFactory::__construct";i:114;s:96:"PHPStan\DependencyInjection\Reflection\LazyClassReflectionExtensionRegistryProvider::__construct";i:115;s:92:"PHPStan\DependencyInjection\Type\LazyDynamicReturnTypeExtensionRegistryProvider::__construct";i:116;s:97:"PHPStan\DependencyInjection\Type\LazyOperatorTypeSpecifyingExtensionRegistryProvider::__construct";i:117;s:36:"PHPStan\File\FileHelper::__construct";i:118;s:38:"PHPStan\File\FileExcluder::__construct";i:119;s:36:"PHPStan\File\FileFinder::__construct";i:120;s:37:"PHPStan\File\FileMonitor::__construct";i:121;s:46:"PHPStan\Parallel\ParallelAnalyser::__construct";i:122;s:39:"PHPStan\Parallel\Scheduler::__construct";i:123;s:40:"PHPStan\Parser\CachedParser::__construct";i:124;s:57:"PHPStan\Reflection\Php\PhpFunctionReflection::__construct";i:125;s:79:"PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher::__construct";i:126;s:84:"PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator::__construct";i:127;s:109:"PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker::__construct";i:128;s:94:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocator::__construct";i:129;s:104:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository::__construct";i:130;s:92:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator::__construct";i:131;s:95:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator::__construct";i:132;s:105:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository::__construct";i:133;s:74:"PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension::__construct";i:134;s:77:"PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension::__construct";i:135;s:63:"PHPStan\Reflection\Php\PhpClassReflectionExtension::__construct";i:136;s:55:"PHPStan\Reflection\Php\PhpMethodReflection::__construct";i:137;s:81:"PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension::__construct";i:138;s:81:"PHPStan\Reflection\ReflectionProvider\LazyReflectionProviderProvider::__construct";i:139;s:77:"PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider::__construct";i:140;s:63:"PHPStan\Reflection\SignatureMap\SignatureMapParser::__construct";i:141;s:73:"PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider::__construct";i:142;s:69:"PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider::__construct";i:143;s:72:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory::__construct";i:144;s:67:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory::create";i:145;s:52:"PHPStan\Rules\ClassCaseSensitivityCheck::__construct";i:146;s:65:"PHPStan\Rules\Comparison\ConstantConditionRuleHelper::__construct";i:147;s:63:"PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper::__construct";i:148;s:54:"PHPStan\Rules\FunctionCallParametersCheck::__construct";i:149;s:50:"PHPStan\Rules\FunctionDefinitionCheck::__construct";i:150;s:50:"PHPStan\Rules\FunctionReturnTypeCheck::__construct";i:151;s:57:"PHPStan\Rules\Generics\GenericAncestorsCheck::__construct";i:152;s:53:"PHPStan\Rules\Generics\TemplateTypeCheck::__construct";i:153;s:37:"PHPStan\Rules\IssetCheck::__construct";i:154;s:54:"PHPStan\Rules\Methods\MethodSignatureRule::__construct";i:155;s:47:"PHPStan\Rules\MissingTypehintCheck::__construct";i:156;s:78:"PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider::__construct";i:157;s:42:"PHPStan\Rules\RegistryFactory::__construct";i:158;s:42:"PHPStan\Rules\RuleLevelHelper::__construct";i:159;s:40:"PHPStan\Type\FileTypeMapper::__construct";i:160;s:71:"PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension::__construct";i:161;s:65:"PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension::__construct";i:162;s:78:"PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension::__construct";i:163;s:67:"PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension::__construct";i:164;s:65:"PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension::__construct";i:165;s:60:"PHPStan\Type\Php\MbFunctionsReturnTypeExtension::__construct";i:166;s:71:"PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension::__construct";i:167;s:72:"PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension::__construct";i:168;s:79:"PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension::__construct";i:169;s:45:"PHPStan\Analyser\TypeSpecifierFactory::create";i:170;s:50:"PHPStan\Analyser\TypeSpecifierFactory::__construct";i:171;s:49:"PHPStan\File\FuzzyRelativePathHelper::__construct";i:172;s:50:"PHPStan\File\SimpleRelativePathHelper::__construct";i:173;s:59:"PHPStan\File\ParentDirectoryRelativePathHelper::__construct";i:174;s:36:"PHPStan\Broker\BrokerFactory::create";i:175;s:41:"PHPStan\Broker\BrokerFactory::__construct";i:176;s:43:"PHPStan\Cache\FileCacheStorage::__construct";i:177;s:38:"PHPStan\Parser\RichParser::__construct";i:178;s:40:"PHPStan\Parser\SimpleParser::__construct";i:179;s:46:"PHPStan\Parser\PhpParserDecorator::__construct";i:180;s:35:"PHPStan\Parser\LexerFactory::create";i:181;s:37:"PhpParser\ParserAbstract::__construct";i:182;s:37:"PHPStan\Rules\RegistryFactory::create";i:183;s:46:"PHPStan\PhpDoc\StubPhpDocProvider::__construct";i:184;s:76:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory::__construct";i:185;s:53:"_HumbugBox96739a27ace4\Nette\DI\Container::getService";i:186;s:80:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory::create";i:187;s:83:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector::__construct";i:189;s:86:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector::__construct";i:190;s:86:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector::__construct";i:191;s:73:"PHPStan\Reflection\BetterReflection\BetterReflectionProvider::__construct";i:192;s:26:"Hoa\Compiler\Llk\Llk::load";i:193;s:26:"Hoa\File\Read::__construct";i:194;s:83:"PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider::__construct";i:195;s:65:"PHPStan\Reflection\Runtime\RuntimeReflectionProvider::__construct";i:196;s:85:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory::__construct";i:198;s:113:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber::__construct";i:199;s:110:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber::__construct";i:200;s:38:"PhpParser\Lexer\Emulative::__construct";i:203;s:45:"PHPStan\Parser\PathRoutingParser::__construct";i:204;s:70:"PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter::__construct";i:205;s:63:"PHPStan\Command\ErrorFormatter\TableErrorFormatter::__construct";i:206;s:68:"PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter::__construct";i:207;s:62:"PHPStan\Command\ErrorFormatter\JsonErrorFormatter::__construct";i:208;s:63:"PHPStan\Command\ErrorFormatter\JunitErrorFormatter::__construct";i:210;s:64:"PHPStan\Command\ErrorFormatter\GitlabErrorFormatter::__construct";i:211;s:64:"PHPStan\Command\ErrorFormatter\GithubErrorFormatter::__construct";i:212;s:66:"PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter::__construct";i:213;s:64:"PHPStan\Rules\Classes\ExistingClassInInstanceOfRule::__construct";i:214;s:66:"PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule::__construct";i:215;s:66:"PHPStan\Rules\Functions\CallToNonExistentFunctionRule::__construct";i:216;s:50:"PHPStan\Rules\Methods\CallMethodsRule::__construct";i:217;s:56:"PHPStan\Rules\Methods\CallStaticMethodsRule::__construct";i:218;s:55:"PHPStan\Rules\Methods\OverridingMethodRule::__construct";i:219;s:73:"PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule::__construct";i:220;s:52:"PHPStan\Rules\Missing\MissingReturnRule::__construct";i:221;s:65:"PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule::__construct";i:222;s:60:"PHPStan\Rules\Namespaces\ExistingNamesInUseRule::__construct";i:223;s:63:"PHPStan\Rules\Operators\InvalidIncDecOperationRule::__construct";i:224;s:58:"PHPStan\Rules\Properties\AccessPropertiesRule::__construct";i:225;s:64:"PHPStan\Rules\Properties\AccessStaticPropertiesRule::__construct";i:226;s:69:"PHPStan\Rules\Properties\ExistingClassesInPropertiesRule::__construct";i:227;s:63:"PHPStan\Rules\Properties\UninitializedPropertyRule::__construct";i:228;s:69:"PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule::__construct";i:229;s:68:"PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule::__construct";i:230;s:57:"PHPStan\Rules\Variables\CompactVariablesRule::__construct";i:231;s:56:"PHPStan\Rules\Variables\DefinedVariableRule::__construct";i:232;s:44:"PHPStan\Rules\Classes\MixinRule::__construct";i:233;s:54:"PHPStan\Rules\Functions\CallCallablesRule::__construct";i:234;s:61:"PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule::__construct";i:235;s:58:"PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule::__construct";i:236;s:63:"PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule::__construct";i:237;s:59:"PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule::__construct";i:238;s:70:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule::__construct";i:239;s:51:"PHPStan\Rules\Functions\ReturnTypeRule::__construct";i:240;s:55:"PHPStan\Rules\Generators\YieldFromTypeRule::__construct";i:241;s:58:"PHPStan\Rules\Generators\YieldInGeneratorRule::__construct";i:242;s:59:"PHPStan\Rules\Classes\ImpossibleInstanceOfRule::__construct";i:243;s:69:"PHPStan\Rules\Comparison\BooleanAndConstantConditionRule::__construct";i:244;s:68:"PHPStan\Rules\Comparison\BooleanOrConstantConditionRule::__construct";i:245;s:69:"PHPStan\Rules\Comparison\BooleanNotConstantConditionRule::__construct";i:246;s:61:"PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule::__construct";i:247;s:65:"PHPStan\Rules\Comparison\ElseIfConstantConditionRule::__construct";i:248;s:61:"PHPStan\Rules\Comparison\IfConstantConditionRule::__construct";i:249;s:73:"PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule::__construct";i:250;s:71:"PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule::__construct";i:251;s:77:"PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule::__construct";i:252;s:74:"PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule::__construct";i:253;s:74:"PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule::__construct";i:254;s:63:"PHPStan\Rules\Comparison\UnreachableIfBranchesRule::__construct";i:255;s:70:"PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule::__construct";i:256;s:75:"PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule::__construct";i:257;s:46:"PHPStan\Rules\Variables\IssetRule::__construct";i:258;s:53:"PHPStan\Rules\Variables\NullCoalesceRule::__construct";i:259;s:60:"PHPStan\Rules\Functions\RandomIntParametersRule::__construct";i:260;s:61:"PHPStan\Rules\Deprecations\DeprecatedClassHelper::__construct";i:261;s:52:"PHPStan\PhpDoc\StubSourceLocatorFactory::__construct";i:266;s:47:"PHPStan\PhpDoc\StubSourceLocatorFactory::create";}i:5;s:32:"f677b255f7a5a3332bde22eb23415ecf";} \ No newline at end of file diff --git a/data/resultCache.php b/data/resultCache.php new file mode 100644 index 0000000..df53bcc --- /dev/null +++ b/data/resultCache.php @@ -0,0 +1,2010 @@ + 1603543954, + 'meta' => array ( + 'cacheVersion' => 'v5-exportedNodes', + 'phpstanVersion' => '0.12.51', + 'phpVersion' => 70411, + 'configFiles' => + array ( + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist' => '957bcbfbc4d1e3c29b684d1f1eede4d692c9f335', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon' => 'c1f76256fe886a8b1fb46f578a0b774fdd966a8f', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon' => '26f00a5fb07d1a8d4b693c9dab089f0c213269f5', + ), + 'analysedPaths' => + array ( + 0 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src', + ), + 'composerLocks' => + array ( + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/composer.lock' => '595f63d5ab720b24c4cdfd0230d023b4c6272b96', + ), + 'cliAutoloadFile' => NULL, + 'phpExtensions' => + array ( + 0 => 'Core', + 1 => 'FFI', + 2 => 'PDO', + 3 => 'Phar', + 4 => 'Reflection', + 5 => 'SPL', + 6 => 'SimpleXML', + 7 => 'Zend OPcache', + 8 => 'bcmath', + 9 => 'blackfire', + 10 => 'calendar', + 11 => 'ctype', + 12 => 'curl', + 13 => 'date', + 14 => 'dom', + 15 => 'exif', + 16 => 'fileinfo', + 17 => 'filter', + 18 => 'ftp', + 19 => 'gettext', + 20 => 'hash', + 21 => 'iconv', + 22 => 'igbinary', + 23 => 'imagick', + 24 => 'intl', + 25 => 'json', + 26 => 'libxml', + 27 => 'mbstring', + 28 => 'mysqli', + 29 => 'mysqlnd', + 30 => 'openssl', + 31 => 'pcntl', + 32 => 'pcre', + 33 => 'pdo_mysql', + 34 => 'posix', + 35 => 'readline', + 36 => 'redis', + 37 => 'session', + 38 => 'shmop', + 39 => 'soap', + 40 => 'sockets', + 41 => 'sodium', + 42 => 'standard', + 43 => 'sysvmsg', + 44 => 'sysvsem', + 45 => 'sysvshm', + 46 => 'tokenizer', + 47 => 'xml', + 48 => 'xmlreader', + 49 => 'xmlwriter', + 50 => 'xsl', + 51 => 'zip', + 52 => 'zlib', + ), + 'stubFiles' => + array ( + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub' => 'ffb6f57879bcd7c9320b7c860d7facd1846e1163', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub' => '41eddc9fba20a88573d9018bdc636b2ffb097dbd', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub' => 'e8b4d1501bc7e090ed47d9835862df50f77996cb', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub' => '2a6220f72171aa65d979f4f8ee06a707ecb96ff4', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub' => 'd6ee3aa03606b7a32ba2da3fcaa9bd725b28a868', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub' => 'e8ef2c0c9c8d09136525ee1a9123d958cfe45f3f', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub' => '1b23e432797a716191e792d673667ebc001643fc', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub' => '8d63f9636060e7efdfced52e29873f51c7cab46e', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub' => 'aff61beeb3e9dfaed0eede432921df5eee2d3b40', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub' => '850c98e54136d3dbbd46c1042a9286f7ca4d36f0', + 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub' => '6a8ce07b7dc82139ffd4ab1e84414e984801b065', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub' => '9f3db5633f9b925acca33e4755a40ec2ba6c35b3', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub' => '985e47b964bd8a6f47ddba6fcb44f862b34be882', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub' => '253c8ff2cc21655cf992d5c4208340d87ef8db09', + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub' => 'df2c8740b40a94dce41b3676373bb4af293d9fe3', + ), + 'level' => 'max', +), + 'errorsCallback' => static function (): array { return array ( +); }, + 'dependencies' => array ( + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php' => + array ( + 'fileHash' => '3b9aaf01f9762503fbe5f53cc18d6b4d121542e6', + 'dependentFiles' => + array ( + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php' => + array ( + 'fileHash' => '3d7f50faa35874796fd41e7d7f057f6e86addcf9', + 'dependentFiles' => + array ( + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Checker.php' => + array ( + 'fileHash' => '7843386c24990c1a0d28261dc0c9f056690df83c', + 'dependentFiles' => + array ( + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/CheckerInterface.php' => + array ( + 'fileHash' => '20e0e3b0b1d4895dad30e9c373b1d196384490a3', + 'dependentFiles' => + array ( + 0 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Checker.php', + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Error.php' => + array ( + 'fileHash' => '0a102de52a1b7c84623a772d072e1e4284147d40', + 'dependentFiles' => + array ( + 0 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php', + 1 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php', + 2 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php', + 3 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php', + 4 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php', + 5 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php', + 6 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php', + 7 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php', + 8 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php', + 9 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php', + 10 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php', + 11 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php', + 12 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php', + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ErrorInterface.php' => + array ( + 'fileHash' => '838ac148d465019a05a73dc77eccbba0e217bab7', + 'dependentFiles' => + array ( + 0 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php', + 1 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php', + 2 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Error.php', + 3 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Result.php', + 4 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ResultInterface.php', + 5 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php', + 6 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php', + 7 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php', + 8 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php', + 9 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php', + 10 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php', + 11 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php', + 12 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php', + 13 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php', + 14 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php', + 15 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php', + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Result.php' => + array ( + 'fileHash' => '0ca856e362d773ce4790685e5ba8041d1c7b4c1f', + 'dependentFiles' => + array ( + 0 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php', + 1 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php', + 2 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/AnyType.php', + 3 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php', + 4 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php', + 5 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php', + 6 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php', + 7 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php', + 8 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php', + 9 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php', + 10 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NullableType.php', + 11 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php', + 12 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php', + 13 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php', + 14 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php', + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ResultInterface.php' => + array ( + 'fileHash' => '84d907b8d86a5fbb436188f77718c40f4d2f485d', + 'dependentFiles' => + array ( + 0 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php', + 1 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php', + 2 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Checker.php', + 3 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/CheckerInterface.php', + 4 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Result.php', + 5 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/AnyType.php', + 6 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php', + 7 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php', + 8 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php', + 9 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php', + 10 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php', + 11 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php', + 12 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php', + 13 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NullableType.php', + 14 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php', + 15 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php', + 16 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/OptionalType.php', + 17 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php', + 18 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php', + 19 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/TypeInterface.php', + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/AnyType.php' => + array ( + 'fileHash' => 'cef331b325aebb23be7566f08c88defb40b629de', + 'dependentFiles' => + array ( + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php' => + array ( + 'fileHash' => 'a7470d03f3803c7e698337176062a768379d88b7', + 'dependentFiles' => + array ( + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php' => + array ( + 'fileHash' => '76520ea9255f569ebde2d9b247306713f9ae870c', + 'dependentFiles' => + array ( + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php' => + array ( + 'fileHash' => '47851bdbfb419a208329fb1fce08f38378c65fd4', + 'dependentFiles' => + array ( + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php' => + array ( + 'fileHash' => 'ff8808d89c20e16a0fb37010cb237975b7642cbd', + 'dependentFiles' => + array ( + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php' => + array ( + 'fileHash' => '6aafe60c304e45eeb3e04260169afbd77cc651d5', + 'dependentFiles' => + array ( + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php' => + array ( + 'fileHash' => '391420b4cf1c623b3817cef7d91e464289164f5a', + 'dependentFiles' => + array ( + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php' => + array ( + 'fileHash' => 'c53fc9582d485c109efe0fed4c96c5f1a3169b0f', + 'dependentFiles' => + array ( + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NullableType.php' => + array ( + 'fileHash' => 'b215cc972d15048365279fcc903ca2cb84b3d794', + 'dependentFiles' => + array ( + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php' => + array ( + 'fileHash' => '8d2150264a5599ec3241388818af5b612244f9f9', + 'dependentFiles' => + array ( + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php' => + array ( + 'fileHash' => '4888b64b33661bada942d5dd9b1ca020c66ea4bb', + 'dependentFiles' => + array ( + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/OptionalType.php' => + array ( + 'fileHash' => '4720e072aae5e138fcd8b48593e898c39066cdbc', + 'dependentFiles' => + array ( + 0 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php', + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php' => + array ( + 'fileHash' => 'b2a987965155c0d783bd5c63aa578b2cbdce650d', + 'dependentFiles' => + array ( + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php' => + array ( + 'fileHash' => '4bdf5e28ee0cb5dd76069f4333808d3a15fd8675', + 'dependentFiles' => + array ( + ), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/TypeInterface.php' => + array ( + 'fileHash' => '593f1c8d08c4793d199ec6e7e537518aab202173', + 'dependentFiles' => + array ( + 0 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php', + 1 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php', + 2 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Checker.php', + 3 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/CheckerInterface.php', + 4 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/AnyType.php', + 5 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php', + 6 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php', + 7 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php', + 8 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php', + 9 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php', + 10 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php', + 11 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php', + 12 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NullableType.php', + 13 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php', + 14 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php', + 15 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/OptionalType.php', + 16 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php', + 17 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php', + ), + ), +), + 'exportedNodesCallback' => static function (): array { return array ( + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Check\\CountCheck', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => '__construct', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => NULL, + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'child', + 'type' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'count', + 'type' => 'int', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + 2 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'namespace' => 'Cubicl\\StructureCheck\\Check', + 'uses' => + array ( + 'countable' => 'Countable', + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Check\\NumericRangeCheck', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => '__construct', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => NULL, + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'child', + 'type' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'upperBound', + 'type' => 'int', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 2 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'lowerBound', + 'type' => 'int', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + 2 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'namespace' => 'Cubicl\\StructureCheck\\Check', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Checker.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Checker', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\CheckerInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'fulfills', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param mixed $element + */', + 'namespace' => 'Cubicl\\StructureCheck', + 'uses' => + array ( + 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'element', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'requirement', + 'type' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/CheckerInterface.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedInterfaceNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\CheckerInterface', + 'phpDoc' => NULL, + 'extends' => + array ( + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Error.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Error', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\ErrorInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => '__construct', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => NULL, + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'message', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + 2 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'getKey', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'string', + 'parameters' => + array ( + ), + )), + 3 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'getMessage', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'string', + 'parameters' => + array ( + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ErrorInterface.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedInterfaceNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\ErrorInterface', + 'phpDoc' => NULL, + 'extends' => + array ( + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Result.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Result', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\ResultInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => '__construct', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param array $errors + */', + 'namespace' => 'Cubicl\\StructureCheck', + 'uses' => + array ( + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => NULL, + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'valid', + 'type' => 'bool', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'errors', + 'type' => 'array', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + 2 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'valid', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => true, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + ), + )), + 3 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'invalid', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param array $errors + */', + 'namespace' => 'Cubicl\\StructureCheck', + 'uses' => + array ( + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => true, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'errors', + 'type' => 'array', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + 4 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'isValid', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'bool', + 'parameters' => + array ( + ), + )), + 5 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'getErrors', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'array', + 'parameters' => + array ( + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ResultInterface.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedInterfaceNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\ResultInterface', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @package Cubicl\\StructureCheck + */', + 'namespace' => 'Cubicl\\StructureCheck', + 'uses' => + array ( + ), + )), + 'extends' => + array ( + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/AnyType.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Type\\AnyType', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Type\\BoolType', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Type\\DatetimeType', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => '__construct', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => NULL, + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'format', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'datetimeZone', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + 2 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'datetime' => 'DateTime', + 'datetimezone' => 'DateTimeZone', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Type\\EnumType', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @template T + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => '__construct', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param array $values + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => NULL, + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'values', + 'type' => 'array', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + 2 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param string $key + * @param T $value + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Type\\ExactValueType', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => '__construct', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => NULL, + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + 2 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Type\\FloatType', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Type\\IntType', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Type\\ListType', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => '__construct', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => NULL, + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'child', + 'type' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + 2 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NullableType.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Type\\NullableType', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => '__construct', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => NULL, + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'child', + 'type' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + 2 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Type\\NumericType', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Type\\ObjectType', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => '__construct', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param TypeInterface[] $children + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => NULL, + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'children', + 'type' => 'array', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + 2 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/OptionalType.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Type\\OptionalType', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => '__construct', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => NULL, + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'child', + 'type' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + 2 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Type\\RegexType', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => '__construct', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => NULL, + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'regex', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + 2 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Type\\StringType', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => + PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @param mixed $value + */', + 'namespace' => 'Cubicl\\StructureCheck\\Type', + 'uses' => + array ( + 'error' => 'Cubicl\\StructureCheck\\Error', + 'result' => 'Cubicl\\StructureCheck\\Result', + 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', + ), + )), + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', + 'parameters' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'key', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + 1 => + PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'value', + 'type' => NULL, + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + )), + ), + )), + ), + '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/TypeInterface.php' => + array ( + 0 => + PHPStan\Dependency\ExportedNode\ExportedInterfaceNode::__set_state(array( + 'name' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', + 'phpDoc' => NULL, + 'extends' => + array ( + ), + )), + ), +); }, +]; \ No newline at end of file diff --git a/phpstan.neon.dist b/phpstan.neon.dist new file mode 100644 index 0000000..773f149 --- /dev/null +++ b/phpstan.neon.dist @@ -0,0 +1,8 @@ +includes: + - vendor/phpstan/phpstan-phpunit/extension.neon + - vendor/phpstan/phpstan-deprecation-rules/rules.neon +parameters: + tmpDir: data + level: max + paths: + - src \ No newline at end of file From 8a6134a83e9174e9775a104d892db4e6840adc9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sara=20Gfr=C3=B6rer?= Date: Sat, 24 Oct 2020 14:58:09 +0200 Subject: [PATCH 5/8] Revert "Add phpstan -deprecated and -unit" This reverts commit 6a5040e67a815ed5f70919ed2085060de798b185. --- composer.json | 7 +- ...0a4cddf31df8af174ad17be8dc3b09175dc73f.php | 6 - ...67eef7caa776617b55a580402020ecc32d9a07.php | 13 - ...6f4d6560dcf9f7aefbcdd3132d0730b737fce3.php | 6 - ...ca84e5b6f3e4b22ae20bc4300cb0e203a7b7f4.php | 13 - ...62b2883ce7042964b9139cdb9d903f2bd674d2.php | 13 - ...9dfb281d3410a16432fd2a256fe58d1414348f.php | 32 - ...b7a2a3e5056cd3e0c4df8dee8aaf587c9db207.php | 7 - ...9f575d514a669670e89f7af2cb19cfaf5ce0d1.php | 6 - ...a2193f7af66062cc312f781115c60e2ae203e8.php | 13 - ...d864fd06c484549ae2f82f51eb54c2a4477ee1.php | 13 - ...0fc590261c8efaa08151ed24abd20808f664eb.php | 6 - ...6bffd393d0ca1c70d57c8a1c1787a895a0996f.php | 6 - ...6cabf11024934dfbb7015b8e4b4791229fc579.php | 1005 --- ...8b14374d2b72d3812f6176226ce1d2a8367e82.php | 6 - ...cb1720fd3cfffaaeec87b0a173a680d4097733.php | 29 - ...f0940f43b5f622f819512dd8c46d1472b549d8.php | 13 - ...0ca6f13fa2ee0cfccaa2cd0d752e72b7360192.php | 13 - ...8a4a95badc545a86733693d59175f77f5944f4.php | 6 - ...e26534d603e6c6f9628db80d83350442b9a1fd.php | 6 - ...f45682fbe8d6e04191767c1363cc64f4e7abaa.php | 6 - ...2be59f615a7db560c2bcb12a3357a94bbbada1.php | 6 - ...3dafc11b645c0fbc6b34d171ef40371f8e7ebc.php | 13 - ...747a8fdf09ab4777eb7d67cc52bff2d17cd784.php | 6 - ...e1452bb32fb5ef782e3b242cfea3674fd93b16.php | 13 - ...209d861d2409564384d2e4f41e119b1fec1d82.php | 6 - ...2715a5da745979feffe2d14c91785f25a6596b.php | 13 - ...4690126fcad20d59b0b8d5490d6289531dfaa0.php | 13 - ...866dd0220d2779d8d9615a8fc260920bffa07b.php | 6 - ...f7fd87ba6c17b79c09aff585809402189a7bf2.php | 6 - ...1c8fdc936455eaed81170cb41f773613fd8302.php | 6 - ...f495ba97114552ec359076767cf935b252b415.php | 6 - ...6730ede242df41aefe1fb81aefa2b733c69a34.php | 6 - ...c0bba8e80104e915c67a47e41e6ccd3db9e775.php | 6 - ...8d466ad5e8885af1903b1fe1cb1f36c817d1e1.php | 31 - ...028a8ecfb4fa0bf45ec7541fbd80ff7634a034.php | 6 - ...c401c263b224b9ca501a1a0401a2d22dfbb4dd.php | 6 - ...8d6f57871df4f4386119949f81614448e9d071.php | 6 - ...c584c6dba4696664fe4fa6318002eddf6f1590.php | 30 - ...c6a66faa4da5b038ea4bae0f0cbbbf5af332a7.php | 6 - ...8753dd552f0d66eb99b8cfc191f2521ac04758.php | 6 - ...c0d800926232616d8c84ea5e7b7e5a581eb9fa.php | 160 - ...d8630041d3d6e11e5f22f0021d9ec45b4d28e0.php | 6 - ...a7442a86f1add9f063f537221fc42a27aefbf3.php | 6 - ...d92d256fac6b068b605a5a15043d4a4fa32baa.php | 6 - ...ed3132f4311288c6435765e82b9da62d91fd03.php | 6 - ...12cbe97f9eb536b2153c10adc7133e676a45b0.php | 9 - ...269e485984ddc55f3962b7479e31b1b9f2d8d9.php | 6 - ...2f3bb1f35f58a1472e2db20e169921422513ff.php | 13 - ...3e73199710ae5c17113eb6677d189c815767be.php | 6 - ...9ae067cd96c4393ffd0adce50e1f523be8bab5.php | 6 - ...6046ac822d7a59a7c50279aa61a17b8f7fde8d.php | 31 - ...a4236008d14b2699263a18271c5ccd8b633f9b.php | 741 -- ...f5fec45d4b32f3210ea2d26ada80cce97bf93a.php | 32 - ...cbab2a0375cfe7eab5f365201a0ff6bd379f52.php | 6 - ...574fdc7ea28d1d204545e2388b5127aae5afa5.php | 6 - ...e2585f41ebe98e95c23da14cc321a0e47b0a39.php | 13 - ...045ba278fa9b1c1e65799631956e11d71b7594.php | 6 - ...7d6413d19f39beb6600348ff66de7ea6093239.php | 6 - ...952c875187cfceaa9d45d804265a237e4d30ab.php | 6 - ...26b31a78a21b4213843359a4f95e68bf222ed5.php | 6 - ...d6be0cf227d5a9f6426dee54d0a4b47727af5f.php | 13 - ...ce094bf24aa8bbe2c88b7f72201a06e42b58b4.php | 6 - ...d391c6764f72d0ee5973f27e876cf4100b36f4.php | 13 - ...f8a9f3d5ffa98ae51a052d21766469fdd9808a.php | 6 - ...4c31ff1e0bcac52251686abedbaa3f6c3ae48f.php | 32 - ...5148cb1ef15a911b9002deb99f629a5db739c1.php | 6 - ...06ae5d4f407633e6d3dfac02e55c8d3c749459.php | 6 - ...93abb322bb5b82328469fcd6a02d65e457268e.php | 7 - ...b12de1771107cc9ca76b4c7d24c932c2736042.php | 8 - ...147dd866c209e91dbc46d4e561032066b4a0d5.php | 6 - ...7e02e9be318a9f35c04e46dc4dbffbf8ccb17d.php | 6 - ...a58eeb7f10f67a184179d1466630a60f8aecb6.php | 13 - ...39238fece5b6278e8e7af6750583bc76434652.php | 6 - ...c3560819bea06d90a35212f02de53c8f2bdae0.php | 6 - ...ef13d6e0c3b5230b07e99478a35bf90d96fdb3.php | 6 - ...e44b3598547d4127fc54031158e98a8ae4f0a7.php | 6 - ...7d88391f44783895cc8b2741453cefda6df773.php | 13 - ...53c8b2172a850d44a9a01321703b1a5f27ec7f.php | 6 - ...7b0341d7238064b7f8305fc1f461812e25e167.php | 6 - ...4869047918fb5c9b4c7f4915cf28ff0fe10ac8.php | 13 - ...ebaeecbbd42ba1d6b9e020ca91142c6bbacbe0.php | 13 - ...f06084fdfece61c3a5af96a3364bedeb0aba1a.php | 30 - ...158ee3293381ad62441275b33d993778d46c6b.php | 2616 ------- ...a55303eb4383b4972327850baa0ef95f5535d1.php | 6 - ...88ee9cc55e2b648aaa0e960674f308ff739021.php | 6 - ...8ac8f366324dd4516472648d0feeac252da359.php | 6 - ...42470e033ff705c8b1d4aa8421fb95aa11b941.php | 6 - ...bd91565acae82ef9da478282d206afaecfc78e.php | 13 - ...636871a21ea8552b7fc5a2b6dfb83c01abd4ee.php | 13 - ...d5b6375d303cbbee2191f82481a5024c35e8c1.php | 6 - ...504eb552d53690174ac1c244e70def1c4a519c.php | 6 - ...d08327722c115693abc214b37f6c297bc06973.php | 6 - ...7fe2c394249eac081113239bda2b234b4933d5.php | 6 - ...9fbd95fa73e1dad9d302fd2a99bb498a848813.php | 6 - ...cd11cdaf0d586304d4fb9408b6c852a7774323.php | 6 - ...9a35bd18677c1cd33d0775b986386e0a71a485.php | 6 - ...4db524da18419d33dda566d697c95eb69cd5f4.php | 6 - ...2bba4a3aac760f30e94bb9266bacd81731ad38.php | 6 - ...0010dbdc436ad8538cc17b11abfc09c73d8527.php | 30 - ...1537931e86fa1e2ea57ede55e2c46bc5904a68.php | 6 - ...f89acb3595aded60526f7c1f6e46ec6b0cbea1.php | 6 - ...4f0b76ae82233de7d2cb609788ad8dfddbd785.php | 6 - ...8cfc246e0d2c772fc507c7b1d7207008e09aac.php | 6 - ...bfccb2ac6c5e9a63fa5dc89d03813a7f231d0a.php | 13 - ...ce88e1823b7729279fd11260e89552c1d1631a.php | 108 - ...ea51c88531a34a34dd40c07f58616739e61e93.php | 6 - ...c1fd09925ae5da108652ffc9b2571cbefa3b7f.php | 6 - ...e38b95d4f4c96348ba5469e1d1f16f2d322105.php | 6 - ...2185cb8f6995eca3329243ec3074789d6d781f.php | 30 - ...36b34313b827e4328c7c69a9c6bd4b47550424.php | 6 - ...3ca551e84c3340002433aaa719246256f977ee.php | 6 - ...3f161ef2cff05433fe0fa66434804729cbee5e.php | 32 - ...3d3a5f39b3b808eb21f3ce746a28d3c747b349.php | 6 - ...2972b24f56972fa36c68437f8d3d171bf0e46a.php | 6 - ...333087a45d8a173b7f49b089294acef0dfc197.php | 32 - ...d43aad9174c1cdff50ac48d1bd2de591de1f9d.php | 6 - ...15fba9194d37a1a8345ca001cdb6b28bb6f731.php | 6 - ...42542855a281cdf1f25377c004a3890283b341.php | 6 - ...79ffe2d2f3ecb120cd95b4e6a001ff49a9b8a9.php | 6 - ...8b3cb8c0068a29931b3c822341635d890e6bf6.php | 6 - ...c03826a59b48f92204bbd8eecfed6a12c5e000.php | 6 - ...5230f08d0b56c8dc7b5013fd99bc6803157557.php | 6 - ...a1277046ed068f2da8cc94a7e2dec91b057084.php | 6 - ...20ecbd4ec9fde96a2c2e25b28ed6ec4d0f15bd.php | 6 - ...c4755066ea86cd86d7faa0ef0f0d56ae91e46b.php | 6 - ...1c3d4d386e56fb4486a139d3b0d66b4383f4ca.php | 6 - ...3cbb9b71ac0eaf58c95099dc2e81446cb31f94.php | 6 - ...a5cc4d76d7d8ba8967263de2868a1728aa9ab9.php | 8 - ...bcb06e060c26add0ee5d64b4f63f6b33433a2a.php | 6 - ...f4e82417388bd2999bc768958db49a6f516dfc.php | 13 - ...1d42dec1afa1e492f155878b516acf6613aa2e.php | 6 - ...467eca4e1377dc3b4d86c36144246e9cb8b4ee.php | 6 - ...ca279b3804f1daf686f6f76d2a25f318524bec.php | 13 - ...b9314965265f5a1122f840669bfbe4f815294d.php | 6 - ...a8eb8185e71136ec60f992d88a19eaf0f9a089.php | 6 - ...d1ef5f696332f7218718288784f27e0f286ba5.php | 6 - ...0c12194fed67fe6e7c6b298e0d341fa4a87e8c.php | 13 - ...843a377e9989817a1bc3c8edd9a2d0d677b767.php | 6 - ...e61fa3def7b2ead509ed9d7224a95fc9207bb5.php | 32 - ...1215ef26faa0f89dc1c9dd3a0b11fcbf45d238.php | 6 - ...29ee94d04173906feeb415651642b72c9b0573.php | 6 - ...64a307066f3229a11c44d841d54483d91aa0d2.php | 6 - ...144ff1660969936adb3b5bf33e82d2c71ca780.php | 6 - ...ea0abfef2f2455b4c149887f949677e7ac123b.php | 6 - ...52dfb5dbc61c7bc8fb7f9e45095f503eb949d7.php | 6 - ...afd1f21dcf3d52c66aa1b3193e2b21694a3060.php | 32 - ...d46cd235492e48c382a2590b16fdc9d4cb4bd8.php | 6 - ...5a60b1571c4b7cd47aed2781241a0af9767e40.php | 8 - ...18d8a850184a6941a77f4b453f4cc70b5aca45.php | 13 - ...4509e411ee391fc6a619f7699250a9570d1ad6.php | 6 - ...66fb7f2622fb9235757ea1c3d8407fba7cc931.php | 6 - ...a4e330c772b11033ff19857bd1f7f22e3836bc.php | 6 - ...c58cab748b7bb3c1fa6545ab85504dae8f4c17.php | 6 - ...941c3dd1b837f591b2876a7290633465904ee8.php | 6 - ...f043fdc5174b4062aae4753981223dcdd3b52e.php | 154 - ...9d5209e697ad147161ee1e6e73939bf497560c.php | 6 - ...97685b4780c978746ad728f350d52e9efcb736.php | 13 - ...f4cc125f6cb838326d89caa338a257f98583e8.php | 6 - ...2c99e7244200793d5e8ea15abf2faf88c1bf6b.php | 6 - ...79a7d328929717a9165ade49d56af51d46abd5.php | 107 - ...9319bbf3575c6854b555884b624532b1992891.php | 6 - ...86829e0bde3898d90d45a214065ce6dd6d02ad.php | 426 -- ...bde3d050ad46a4e4d4623912a61a7e3b994d4a.php | 6 - ...c186280446546a92fbcaccb9ca2da9a22da57b.php | 71 - ...fbc138e80195b07a3a3cf33010a201b217d832.php | 6 - ...a3e7a446b29da80fba3b93053440bc895f92b6.php | 6 - ...4c2cd9153df6a13c3fe1e7ad45ead2f44a25fc.php | 6 - ...e44407120181578ba38b9dbbc1e8f346304eab.php | 7 - ...2fd8ee64c0ee935739ec05367cd4bd3f065305.php | 6 - ...4c0a9cff4b7efc3f3b05beb7002974c13e9cbc.php | 6 - ...59d3203927f3b9004b1d1654c3d933fd8e69c6.php | 6 - ...9e86be5a38c0eedb84122ac3c4f850402fc526.php | 6 - ...40b03b682c63893633911aaf05d2b3112ab16e.php | 6 - ...ed5fffcd1dbd596fbde55df8ebda81ac34e4bb.php | 13 - ...1fa0ef32151fb3cde03802a4a53759e55d87df.php | 7 - ...980e646464aff1f9fe3a41ff3fc234d8829fe0.php | 13 - ...2a0395c2ded4d78188609959407adb820a5d70.php | 6 - ...68bd2d8dd0210910e3ae38c7be1d99ddc8c7dd.php | 268 - ...a884ea935adc56433b6395233888755dc8f0ee.php | 6 - ...7ea4aacc94d2b76c62131e7352712ee9ec34bc.php | 6 - ...70789801c10d90a66ee33c2e8caca85cf97289.php | 6 - ...0c1b97f67b232db03874f0b54ed6975802a2c0.php | 6 - ...1b23c4afc47a46121bb14a990e3d2f510b4409.php | 944 --- ...47638c0f5b6604e459e8b26a76c0460fcf96c8.php | 6 - ...b8cdd78a2d8b6f362f19b55cbdbd58a4bffb77.php | 78 - ...dbdb57ee9fe8827341192ddd0a7b84b53981bf.php | 6 - ...b9fb049ce98c71152804ae143e2be343a18e4f.php | 13 - ...373a4ac29a22dce843d2aabc091196aee2fb7c.php | 6 - ...42806e3c50767db85e0e08f3fbec902e03c76a.php | 6 - ...8ac29c1a321f3966a1c2c5b0ced21fa50f1b06.php | 6 - ...3b871ad7aef06514cb36eeb7971605a44e32a2.php | 6 - ...d8069dba0a1e67e58db2439fc676faffa2bbe7.php | 6 - ...468d537e8981d09e6e6b5e9a84f0f5267c83a6.php | 13 - ...c3c16c3efee2aa4112997b19a88162d9273fd5.php | 13 - ...fc8598ade47c8f9ced34f6bb705b94aae73c96.php | 6 - ...57f151d9eee738b2a728cadd71a52d2af1a83c.php | 6 - ...e3dca32ad19ac12c2fe3c286e7cfd5b97a93c3.php | 13 - ...f51c8eaabcec054c2de5a4493332627a7e190b.php | 6 - ...45dfbbf41ccac63abd7024cde9758b704ab45e.php | 6 - ...47a23cd182eb7bec5721914695adb03053c094.php | 6 - ...8f5e5fb1ab91df44808ba9b1fbd3ebdf1d021c.php | 6 - ...2b559377237532e608f642cbc72e3309f1f2fa.php | 6 - ...e81fbc582defb6dd5dbd68543058765a3dff8b.php | 6 - ...37ea4ef287a9aa0e114b52a027b2efb5d8f3be.php | 6 - ...d2fe383718086c7fd58237ae26b25915459537.php | 6 - ...922562605ad2653aa5032f493c53c6c7e82ed0.php | 34 - ...e93f6dc26fab2f24f883eed87cf283d85255c8.php | 6 - ...6b08a745e113d3444ae8a7aebcf01d43b2b54b.php | 6 - ...90e2bebb5d378158c041037dc531dec0616f44.php | 34 - ...c7e15d15806f232958ca2745aaa89dda159192.php | 6 - ...3df6ee5044a0fb9003cad34d64f70e135e8c2a.php | 8 - ...c25e3685e0266e5464f4250be70d1eb1f61e02.php | 30 - ...e98a0407200523afcfc69c3258e8f0355399a0.php | 7 - ...7b640f7f737016134e37c80752e603b801bc16.php | 6 - ...a421c1ec9795196258ff6d5a5d167ed6817f8b.php | 6 - ...f3a128dd7dc46bd6f3a7dc119f8110dd1ced7f.php | 221 - ...8187c54df620f355446b2bc7cd3894125463d1.php | 6 - ...4b30a72a5e2ba85367918e894068d4d8ad93a2.php | 6 - ...e4d36311afa199a7ad1330e9863dcce72bb9d5.php | 6 - ...be786521a231a526b45d878f07f2214b1abaf6.php | 6 - ...07c7695ba5eb445ea5a7dcf6d406bead213429.php | 6 - ...71381da9e1fc3dfe6271e76cfc66ce8de8d815.php | 6 - ...5a12b2ff83257315e6a18922d11f8fea5fe72a.php | 2127 ------ ...f6b5ac15f6fa7012b3045cb7e68b009cfef69d.php | 6 - ...12241aafa86f3b0144cde635ff239c6fbebe89.php | 6 - ...8345230f80c9c457e5ef675579a4e8bb8f062d.php | 820 --- ...c7894d2c3f31a89cbb701649ffdb29880305c3.php | 6 - ...d1cf91766bba92a19ba0f5f8ad32c56411dc23.php | 29 - ...4f1f1b679a04eb41dfed1d9eb8bd63495a3739.php | 6 - ...612a4104111b7f099f71a618f1e30a2b68fe04.php | 6 - ...6e6114bae224af917ef66aa644cbd3d2ad388d.php | 13 - ...0c41b7b7efaab03b8c58d20ab83fa2b47876f4.php | 6 - ...911c7c46b1b5fdf99e60f594bd1fa7b0de57f5.php | 13 - ...a91084a6fffc5ff8585f980e51b9c4f4af7a0b.php | 6 - ...35a6f2b8b307afb80055a2e8afbfc4be43623b.php | 7 - ...5b834cc67cb680840b8984056bd3aa642557a4.php | 13 - ...ad4a9d3067ff46a5f269031f7ab097a5d8d512.php | 6 - ...d19efd73efd622a0e33a448ab1edf31f57217d.php | 6 - ...c120293f83544841608b0b8244f1b466274780.php | 54 - ...e4b9bf1b90f7e353e74a4a2acb6d708b044aad.php | 73 - ...ffda35031533d5f3c3def47b1112fc85c90940.php | 6 - ...2afeaabe77653c97a35c740be56b13386484dd.php | 6 - ...c3951210468e1993eb63cab47a7b5b90900c58.php | 6 - ...41554384b393b6d9000a46e3db1e4a5ec223ec.php | 6 - ...a726c9b10a25c77ef8e287e3c5d2a17c2afc3e.php | 6086 ----------------- ...d40f514e065d528e58310fc766719b31dda359.php | 6 - ...c553486b2485d247bd6bd0e3914b90c67a93e4.php | 50 - ...d64048576d3b4dd3c8a3c5bceb77330a26176f.php | 6 - ...c1632e349e087ae5a7c757d76a9ae1fb7c6acd.php | 6 - ...c3f42e60230db73c41ff5c2adf5539f3fa2f55.php | 6 - ...8a9585a205dbbed43edcc6315dc48aad0b624f.php | 6 - ...a26daa24ce442984a6a8ba6ba0030afa924c8b.php | 6 - ...3247bd7b1c1562ffe438dfe5907427243da65b.php | 6 - ...4ebb3b47f34e8ed39a6e2a65014583500d1d16.php | 6 - ...ceb39be3c5da139b626441971fd2099dcf1f6c.php | 6 - ...faed4e6fa23e59e4de957eaae032848e795a97.php | 6 - ...e5d6db7da71566297d73f5a1df212309c98e5c.php | 6 - ...1d130969b88d4bd9d39f8891e9cec990844008.php | 8 - ...77c9a005e659a453b0bc8b5041ef2a462a8015.php | 13 - ...cf66005f1f2acb717ffeac4774d1c041c59add.php | 6 - ...c5efd85deeb4d2d6a3f8e16cf1e8471d6364aa.php | 6 - ...b5d8770b219cfde9b57e0972632076180c0483.php | 6 - ...c69e39a3a4997e1aec459930c238ce0166f05f.php | 6 - ...89aed06f5659c1cd3a52f134da3b6c3e2d8647.php | 6 - ...95a19e30d9cc6991a7a2a70030e0b065aa3c24.php | 13 - ...371664a9c19e9d8b4a1c2b4e105cd6fd35f0c3.php | 6 - ...9a081e7346c5a2cda149dbaaeef2aea046a252.php | 13 - ...f2d3e743b6119918283d2ce2177a81d949b50c.php | 6 - ...24cd25dc973f55931bea8a8528ec94d3c94041.php | 6 - ...f8270bfe6983a1f413389b25714a94be6cbaaf.php | 30 - ...dcb17d80a93cfa22d6a6b6bcb7554780a3115e.php | 6 - ...c423010bc45eca703f6bc521b89cc82bfe0ff2.php | 13 - .../Container_0680f21d46.php | 5647 --------------- .../Container_0680f21d46.php.lock | 0 .../Container_0680f21d46.php.meta | 1 - .../Container_e563100465.php | 5736 ---------------- .../Container_e563100465.php.lock | 0 .../Container_e563100465.php.meta | 1 - data/resultCache.php | 2010 ------ phpstan.neon.dist | 8 - 281 files changed, 2 insertions(+), 31812 deletions(-) delete mode 100644 data/cache/PHPStan/00/0a/000a4cddf31df8af174ad17be8dc3b09175dc73f.php delete mode 100644 data/cache/PHPStan/00/67/0067eef7caa776617b55a580402020ecc32d9a07.php delete mode 100644 data/cache/PHPStan/03/6f/036f4d6560dcf9f7aefbcdd3132d0730b737fce3.php delete mode 100644 data/cache/PHPStan/03/ca/03ca84e5b6f3e4b22ae20bc4300cb0e203a7b7f4.php delete mode 100644 data/cache/PHPStan/04/62/0462b2883ce7042964b9139cdb9d903f2bd674d2.php delete mode 100644 data/cache/PHPStan/05/9d/059dfb281d3410a16432fd2a256fe58d1414348f.php delete mode 100644 data/cache/PHPStan/05/b7/05b7a2a3e5056cd3e0c4df8dee8aaf587c9db207.php delete mode 100644 data/cache/PHPStan/06/9f/069f575d514a669670e89f7af2cb19cfaf5ce0d1.php delete mode 100644 data/cache/PHPStan/06/a2/06a2193f7af66062cc312f781115c60e2ae203e8.php delete mode 100644 data/cache/PHPStan/06/d8/06d864fd06c484549ae2f82f51eb54c2a4477ee1.php delete mode 100644 data/cache/PHPStan/07/0f/070fc590261c8efaa08151ed24abd20808f664eb.php delete mode 100644 data/cache/PHPStan/07/6b/076bffd393d0ca1c70d57c8a1c1787a895a0996f.php delete mode 100644 data/cache/PHPStan/07/6c/076cabf11024934dfbb7015b8e4b4791229fc579.php delete mode 100644 data/cache/PHPStan/07/8b/078b14374d2b72d3812f6176226ce1d2a8367e82.php delete mode 100644 data/cache/PHPStan/07/cb/07cb1720fd3cfffaaeec87b0a173a680d4097733.php delete mode 100644 data/cache/PHPStan/07/f0/07f0940f43b5f622f819512dd8c46d1472b549d8.php delete mode 100644 data/cache/PHPStan/08/0c/080ca6f13fa2ee0cfccaa2cd0d752e72b7360192.php delete mode 100644 data/cache/PHPStan/09/8a/098a4a95badc545a86733693d59175f77f5944f4.php delete mode 100644 data/cache/PHPStan/09/e2/09e26534d603e6c6f9628db80d83350442b9a1fd.php delete mode 100644 data/cache/PHPStan/0a/f4/0af45682fbe8d6e04191767c1363cc64f4e7abaa.php delete mode 100644 data/cache/PHPStan/0e/2b/0e2be59f615a7db560c2bcb12a3357a94bbbada1.php delete mode 100644 data/cache/PHPStan/11/3d/113dafc11b645c0fbc6b34d171ef40371f8e7ebc.php delete mode 100644 data/cache/PHPStan/11/74/11747a8fdf09ab4777eb7d67cc52bff2d17cd784.php delete mode 100644 data/cache/PHPStan/12/e1/12e1452bb32fb5ef782e3b242cfea3674fd93b16.php delete mode 100644 data/cache/PHPStan/17/20/17209d861d2409564384d2e4f41e119b1fec1d82.php delete mode 100644 data/cache/PHPStan/19/27/192715a5da745979feffe2d14c91785f25a6596b.php delete mode 100644 data/cache/PHPStan/1a/46/1a4690126fcad20d59b0b8d5490d6289531dfaa0.php delete mode 100644 data/cache/PHPStan/1a/86/1a866dd0220d2779d8d9615a8fc260920bffa07b.php delete mode 100644 data/cache/PHPStan/1a/f7/1af7fd87ba6c17b79c09aff585809402189a7bf2.php delete mode 100644 data/cache/PHPStan/1b/1c/1b1c8fdc936455eaed81170cb41f773613fd8302.php delete mode 100644 data/cache/PHPStan/1c/f4/1cf495ba97114552ec359076767cf935b252b415.php delete mode 100644 data/cache/PHPStan/1d/67/1d6730ede242df41aefe1fb81aefa2b733c69a34.php delete mode 100644 data/cache/PHPStan/1e/c0/1ec0bba8e80104e915c67a47e41e6ccd3db9e775.php delete mode 100644 data/cache/PHPStan/1f/8d/1f8d466ad5e8885af1903b1fe1cb1f36c817d1e1.php delete mode 100644 data/cache/PHPStan/20/02/20028a8ecfb4fa0bf45ec7541fbd80ff7634a034.php delete mode 100644 data/cache/PHPStan/24/c4/24c401c263b224b9ca501a1a0401a2d22dfbb4dd.php delete mode 100644 data/cache/PHPStan/26/8d/268d6f57871df4f4386119949f81614448e9d071.php delete mode 100644 data/cache/PHPStan/27/c5/27c584c6dba4696664fe4fa6318002eddf6f1590.php delete mode 100644 data/cache/PHPStan/27/c6/27c6a66faa4da5b038ea4bae0f0cbbbf5af332a7.php delete mode 100644 data/cache/PHPStan/29/87/298753dd552f0d66eb99b8cfc191f2521ac04758.php delete mode 100644 data/cache/PHPStan/29/c0/29c0d800926232616d8c84ea5e7b7e5a581eb9fa.php delete mode 100644 data/cache/PHPStan/29/d8/29d8630041d3d6e11e5f22f0021d9ec45b4d28e0.php delete mode 100644 data/cache/PHPStan/2d/a7/2da7442a86f1add9f063f537221fc42a27aefbf3.php delete mode 100644 data/cache/PHPStan/2d/d9/2dd92d256fac6b068b605a5a15043d4a4fa32baa.php delete mode 100644 data/cache/PHPStan/2d/ed/2ded3132f4311288c6435765e82b9da62d91fd03.php delete mode 100644 data/cache/PHPStan/2e/12/2e12cbe97f9eb536b2153c10adc7133e676a45b0.php delete mode 100644 data/cache/PHPStan/2e/26/2e269e485984ddc55f3962b7479e31b1b9f2d8d9.php delete mode 100644 data/cache/PHPStan/2e/2f/2e2f3bb1f35f58a1472e2db20e169921422513ff.php delete mode 100644 data/cache/PHPStan/2e/3e/2e3e73199710ae5c17113eb6677d189c815767be.php delete mode 100644 data/cache/PHPStan/2e/9a/2e9ae067cd96c4393ffd0adce50e1f523be8bab5.php delete mode 100644 data/cache/PHPStan/2f/60/2f6046ac822d7a59a7c50279aa61a17b8f7fde8d.php delete mode 100644 data/cache/PHPStan/31/a4/31a4236008d14b2699263a18271c5ccd8b633f9b.php delete mode 100644 data/cache/PHPStan/32/f5/32f5fec45d4b32f3210ea2d26ada80cce97bf93a.php delete mode 100644 data/cache/PHPStan/33/cb/33cbab2a0375cfe7eab5f365201a0ff6bd379f52.php delete mode 100644 data/cache/PHPStan/34/57/34574fdc7ea28d1d204545e2388b5127aae5afa5.php delete mode 100644 data/cache/PHPStan/37/e2/37e2585f41ebe98e95c23da14cc321a0e47b0a39.php delete mode 100644 data/cache/PHPStan/38/04/38045ba278fa9b1c1e65799631956e11d71b7594.php delete mode 100644 data/cache/PHPStan/38/7d/387d6413d19f39beb6600348ff66de7ea6093239.php delete mode 100644 data/cache/PHPStan/3c/95/3c952c875187cfceaa9d45d804265a237e4d30ab.php delete mode 100644 data/cache/PHPStan/3e/26/3e26b31a78a21b4213843359a4f95e68bf222ed5.php delete mode 100644 data/cache/PHPStan/40/d6/40d6be0cf227d5a9f6426dee54d0a4b47727af5f.php delete mode 100644 data/cache/PHPStan/42/ce/42ce094bf24aa8bbe2c88b7f72201a06e42b58b4.php delete mode 100644 data/cache/PHPStan/42/d3/42d391c6764f72d0ee5973f27e876cf4100b36f4.php delete mode 100644 data/cache/PHPStan/42/f8/42f8a9f3d5ffa98ae51a052d21766469fdd9808a.php delete mode 100644 data/cache/PHPStan/43/4c/434c31ff1e0bcac52251686abedbaa3f6c3ae48f.php delete mode 100644 data/cache/PHPStan/43/51/435148cb1ef15a911b9002deb99f629a5db739c1.php delete mode 100644 data/cache/PHPStan/44/06/4406ae5d4f407633e6d3dfac02e55c8d3c749459.php delete mode 100644 data/cache/PHPStan/45/93/4593abb322bb5b82328469fcd6a02d65e457268e.php delete mode 100644 data/cache/PHPStan/45/b1/45b12de1771107cc9ca76b4c7d24c932c2736042.php delete mode 100644 data/cache/PHPStan/46/14/46147dd866c209e91dbc46d4e561032066b4a0d5.php delete mode 100644 data/cache/PHPStan/46/7e/467e02e9be318a9f35c04e46dc4dbffbf8ccb17d.php delete mode 100644 data/cache/PHPStan/46/a5/46a58eeb7f10f67a184179d1466630a60f8aecb6.php delete mode 100644 data/cache/PHPStan/47/39/4739238fece5b6278e8e7af6750583bc76434652.php delete mode 100644 data/cache/PHPStan/47/c3/47c3560819bea06d90a35212f02de53c8f2bdae0.php delete mode 100644 data/cache/PHPStan/47/ef/47ef13d6e0c3b5230b07e99478a35bf90d96fdb3.php delete mode 100644 data/cache/PHPStan/49/e4/49e44b3598547d4127fc54031158e98a8ae4f0a7.php delete mode 100644 data/cache/PHPStan/4a/7d/4a7d88391f44783895cc8b2741453cefda6df773.php delete mode 100644 data/cache/PHPStan/4c/53/4c53c8b2172a850d44a9a01321703b1a5f27ec7f.php delete mode 100644 data/cache/PHPStan/4c/7b/4c7b0341d7238064b7f8305fc1f461812e25e167.php delete mode 100644 data/cache/PHPStan/4e/48/4e4869047918fb5c9b4c7f4915cf28ff0fe10ac8.php delete mode 100644 data/cache/PHPStan/52/eb/52ebaeecbbd42ba1d6b9e020ca91142c6bbacbe0.php delete mode 100644 data/cache/PHPStan/52/f0/52f06084fdfece61c3a5af96a3364bedeb0aba1a.php delete mode 100644 data/cache/PHPStan/53/15/53158ee3293381ad62441275b33d993778d46c6b.php delete mode 100644 data/cache/PHPStan/53/a5/53a55303eb4383b4972327850baa0ef95f5535d1.php delete mode 100644 data/cache/PHPStan/54/88/5488ee9cc55e2b648aaa0e960674f308ff739021.php delete mode 100644 data/cache/PHPStan/54/8a/548ac8f366324dd4516472648d0feeac252da359.php delete mode 100644 data/cache/PHPStan/55/42/5542470e033ff705c8b1d4aa8421fb95aa11b941.php delete mode 100644 data/cache/PHPStan/56/bd/56bd91565acae82ef9da478282d206afaecfc78e.php delete mode 100644 data/cache/PHPStan/57/63/57636871a21ea8552b7fc5a2b6dfb83c01abd4ee.php delete mode 100644 data/cache/PHPStan/57/d5/57d5b6375d303cbbee2191f82481a5024c35e8c1.php delete mode 100644 data/cache/PHPStan/58/50/58504eb552d53690174ac1c244e70def1c4a519c.php delete mode 100644 data/cache/PHPStan/59/d0/59d08327722c115693abc214b37f6c297bc06973.php delete mode 100644 data/cache/PHPStan/5a/7f/5a7fe2c394249eac081113239bda2b234b4933d5.php delete mode 100644 data/cache/PHPStan/5a/9f/5a9fbd95fa73e1dad9d302fd2a99bb498a848813.php delete mode 100644 data/cache/PHPStan/5b/cd/5bcd11cdaf0d586304d4fb9408b6c852a7774323.php delete mode 100644 data/cache/PHPStan/5c/9a/5c9a35bd18677c1cd33d0775b986386e0a71a485.php delete mode 100644 data/cache/PHPStan/5d/4d/5d4db524da18419d33dda566d697c95eb69cd5f4.php delete mode 100644 data/cache/PHPStan/5e/2b/5e2bba4a3aac760f30e94bb9266bacd81731ad38.php delete mode 100644 data/cache/PHPStan/5f/00/5f0010dbdc436ad8538cc17b11abfc09c73d8527.php delete mode 100644 data/cache/PHPStan/60/15/601537931e86fa1e2ea57ede55e2c46bc5904a68.php delete mode 100644 data/cache/PHPStan/60/f8/60f89acb3595aded60526f7c1f6e46ec6b0cbea1.php delete mode 100644 data/cache/PHPStan/61/4f/614f0b76ae82233de7d2cb609788ad8dfddbd785.php delete mode 100644 data/cache/PHPStan/61/8c/618cfc246e0d2c772fc507c7b1d7207008e09aac.php delete mode 100644 data/cache/PHPStan/61/bf/61bfccb2ac6c5e9a63fa5dc89d03813a7f231d0a.php delete mode 100644 data/cache/PHPStan/61/ce/61ce88e1823b7729279fd11260e89552c1d1631a.php delete mode 100644 data/cache/PHPStan/61/ea/61ea51c88531a34a34dd40c07f58616739e61e93.php delete mode 100644 data/cache/PHPStan/63/c1/63c1fd09925ae5da108652ffc9b2571cbefa3b7f.php delete mode 100644 data/cache/PHPStan/63/e3/63e38b95d4f4c96348ba5469e1d1f16f2d322105.php delete mode 100644 data/cache/PHPStan/65/21/652185cb8f6995eca3329243ec3074789d6d781f.php delete mode 100644 data/cache/PHPStan/65/36/6536b34313b827e4328c7c69a9c6bd4b47550424.php delete mode 100644 data/cache/PHPStan/65/3c/653ca551e84c3340002433aaa719246256f977ee.php delete mode 100644 data/cache/PHPStan/65/3f/653f161ef2cff05433fe0fa66434804729cbee5e.php delete mode 100644 data/cache/PHPStan/66/3d/663d3a5f39b3b808eb21f3ce746a28d3c747b349.php delete mode 100644 data/cache/PHPStan/67/29/672972b24f56972fa36c68437f8d3d171bf0e46a.php delete mode 100644 data/cache/PHPStan/68/33/68333087a45d8a173b7f49b089294acef0dfc197.php delete mode 100644 data/cache/PHPStan/68/d4/68d43aad9174c1cdff50ac48d1bd2de591de1f9d.php delete mode 100644 data/cache/PHPStan/69/15/6915fba9194d37a1a8345ca001cdb6b28bb6f731.php delete mode 100644 data/cache/PHPStan/6b/42/6b42542855a281cdf1f25377c004a3890283b341.php delete mode 100644 data/cache/PHPStan/6b/79/6b79ffe2d2f3ecb120cd95b4e6a001ff49a9b8a9.php delete mode 100644 data/cache/PHPStan/6b/8b/6b8b3cb8c0068a29931b3c822341635d890e6bf6.php delete mode 100644 data/cache/PHPStan/6d/c0/6dc03826a59b48f92204bbd8eecfed6a12c5e000.php delete mode 100644 data/cache/PHPStan/71/52/715230f08d0b56c8dc7b5013fd99bc6803157557.php delete mode 100644 data/cache/PHPStan/72/a1/72a1277046ed068f2da8cc94a7e2dec91b057084.php delete mode 100644 data/cache/PHPStan/73/20/7320ecbd4ec9fde96a2c2e25b28ed6ec4d0f15bd.php delete mode 100644 data/cache/PHPStan/74/c4/74c4755066ea86cd86d7faa0ef0f0d56ae91e46b.php delete mode 100644 data/cache/PHPStan/77/1c/771c3d4d386e56fb4486a139d3b0d66b4383f4ca.php delete mode 100644 data/cache/PHPStan/78/3c/783cbb9b71ac0eaf58c95099dc2e81446cb31f94.php delete mode 100644 data/cache/PHPStan/78/a5/78a5cc4d76d7d8ba8967263de2868a1728aa9ab9.php delete mode 100644 data/cache/PHPStan/78/bc/78bcb06e060c26add0ee5d64b4f63f6b33433a2a.php delete mode 100644 data/cache/PHPStan/78/f4/78f4e82417388bd2999bc768958db49a6f516dfc.php delete mode 100644 data/cache/PHPStan/79/1d/791d42dec1afa1e492f155878b516acf6613aa2e.php delete mode 100644 data/cache/PHPStan/7b/46/7b467eca4e1377dc3b4d86c36144246e9cb8b4ee.php delete mode 100644 data/cache/PHPStan/7c/ca/7cca279b3804f1daf686f6f76d2a25f318524bec.php delete mode 100644 data/cache/PHPStan/7d/b9/7db9314965265f5a1122f840669bfbe4f815294d.php delete mode 100644 data/cache/PHPStan/7e/a8/7ea8eb8185e71136ec60f992d88a19eaf0f9a089.php delete mode 100644 data/cache/PHPStan/7e/d1/7ed1ef5f696332f7218718288784f27e0f286ba5.php delete mode 100644 data/cache/PHPStan/80/0c/800c12194fed67fe6e7c6b298e0d341fa4a87e8c.php delete mode 100644 data/cache/PHPStan/80/84/80843a377e9989817a1bc3c8edd9a2d0d677b767.php delete mode 100644 data/cache/PHPStan/80/e6/80e61fa3def7b2ead509ed9d7224a95fc9207bb5.php delete mode 100644 data/cache/PHPStan/82/12/821215ef26faa0f89dc1c9dd3a0b11fcbf45d238.php delete mode 100644 data/cache/PHPStan/82/29/8229ee94d04173906feeb415651642b72c9b0573.php delete mode 100644 data/cache/PHPStan/82/64/8264a307066f3229a11c44d841d54483d91aa0d2.php delete mode 100644 data/cache/PHPStan/83/14/83144ff1660969936adb3b5bf33e82d2c71ca780.php delete mode 100644 data/cache/PHPStan/84/ea/84ea0abfef2f2455b4c149887f949677e7ac123b.php delete mode 100644 data/cache/PHPStan/86/52/8652dfb5dbc61c7bc8fb7f9e45095f503eb949d7.php delete mode 100644 data/cache/PHPStan/86/af/86afd1f21dcf3d52c66aa1b3193e2b21694a3060.php delete mode 100644 data/cache/PHPStan/86/d4/86d46cd235492e48c382a2590b16fdc9d4cb4bd8.php delete mode 100644 data/cache/PHPStan/87/5a/875a60b1571c4b7cd47aed2781241a0af9767e40.php delete mode 100644 data/cache/PHPStan/89/18/8918d8a850184a6941a77f4b453f4cc70b5aca45.php delete mode 100644 data/cache/PHPStan/89/45/894509e411ee391fc6a619f7699250a9570d1ad6.php delete mode 100644 data/cache/PHPStan/89/66/8966fb7f2622fb9235757ea1c3d8407fba7cc931.php delete mode 100644 data/cache/PHPStan/89/a4/89a4e330c772b11033ff19857bd1f7f22e3836bc.php delete mode 100644 data/cache/PHPStan/8a/c5/8ac58cab748b7bb3c1fa6545ab85504dae8f4c17.php delete mode 100644 data/cache/PHPStan/8d/94/8d941c3dd1b837f591b2876a7290633465904ee8.php delete mode 100644 data/cache/PHPStan/8e/f0/8ef043fdc5174b4062aae4753981223dcdd3b52e.php delete mode 100644 data/cache/PHPStan/8f/9d/8f9d5209e697ad147161ee1e6e73939bf497560c.php delete mode 100644 data/cache/PHPStan/91/97/9197685b4780c978746ad728f350d52e9efcb736.php delete mode 100644 data/cache/PHPStan/91/f4/91f4cc125f6cb838326d89caa338a257f98583e8.php delete mode 100644 data/cache/PHPStan/92/2c/922c99e7244200793d5e8ea15abf2faf88c1bf6b.php delete mode 100644 data/cache/PHPStan/92/79/9279a7d328929717a9165ade49d56af51d46abd5.php delete mode 100644 data/cache/PHPStan/95/93/959319bbf3575c6854b555884b624532b1992891.php delete mode 100644 data/cache/PHPStan/96/86/9686829e0bde3898d90d45a214065ce6dd6d02ad.php delete mode 100644 data/cache/PHPStan/98/bd/98bde3d050ad46a4e4d4623912a61a7e3b994d4a.php delete mode 100644 data/cache/PHPStan/98/c1/98c186280446546a92fbcaccb9ca2da9a22da57b.php delete mode 100644 data/cache/PHPStan/98/fb/98fbc138e80195b07a3a3cf33010a201b217d832.php delete mode 100644 data/cache/PHPStan/9a/a3/9aa3e7a446b29da80fba3b93053440bc895f92b6.php delete mode 100644 data/cache/PHPStan/9c/4c/9c4c2cd9153df6a13c3fe1e7ad45ead2f44a25fc.php delete mode 100644 data/cache/PHPStan/9c/e4/9ce44407120181578ba38b9dbbc1e8f346304eab.php delete mode 100644 data/cache/PHPStan/9e/2f/9e2fd8ee64c0ee935739ec05367cd4bd3f065305.php delete mode 100644 data/cache/PHPStan/9e/4c/9e4c0a9cff4b7efc3f3b05beb7002974c13e9cbc.php delete mode 100644 data/cache/PHPStan/9f/59/9f59d3203927f3b9004b1d1654c3d933fd8e69c6.php delete mode 100644 data/cache/PHPStan/9f/9e/9f9e86be5a38c0eedb84122ac3c4f850402fc526.php delete mode 100644 data/cache/PHPStan/a0/40/a040b03b682c63893633911aaf05d2b3112ab16e.php delete mode 100644 data/cache/PHPStan/a1/ed/a1ed5fffcd1dbd596fbde55df8ebda81ac34e4bb.php delete mode 100644 data/cache/PHPStan/a2/1f/a21fa0ef32151fb3cde03802a4a53759e55d87df.php delete mode 100644 data/cache/PHPStan/a2/98/a2980e646464aff1f9fe3a41ff3fc234d8829fe0.php delete mode 100644 data/cache/PHPStan/a3/2a/a32a0395c2ded4d78188609959407adb820a5d70.php delete mode 100644 data/cache/PHPStan/a3/68/a368bd2d8dd0210910e3ae38c7be1d99ddc8c7dd.php delete mode 100644 data/cache/PHPStan/a3/a8/a3a884ea935adc56433b6395233888755dc8f0ee.php delete mode 100644 data/cache/PHPStan/a4/7e/a47ea4aacc94d2b76c62131e7352712ee9ec34bc.php delete mode 100644 data/cache/PHPStan/a7/70/a770789801c10d90a66ee33c2e8caca85cf97289.php delete mode 100644 data/cache/PHPStan/a8/0c/a80c1b97f67b232db03874f0b54ed6975802a2c0.php delete mode 100644 data/cache/PHPStan/ab/1b/ab1b23c4afc47a46121bb14a990e3d2f510b4409.php delete mode 100644 data/cache/PHPStan/ab/47/ab47638c0f5b6604e459e8b26a76c0460fcf96c8.php delete mode 100644 data/cache/PHPStan/ab/b8/abb8cdd78a2d8b6f362f19b55cbdbd58a4bffb77.php delete mode 100644 data/cache/PHPStan/ab/db/abdbdb57ee9fe8827341192ddd0a7b84b53981bf.php delete mode 100644 data/cache/PHPStan/ad/b9/adb9fb049ce98c71152804ae143e2be343a18e4f.php delete mode 100644 data/cache/PHPStan/ae/37/ae373a4ac29a22dce843d2aabc091196aee2fb7c.php delete mode 100644 data/cache/PHPStan/ae/42/ae42806e3c50767db85e0e08f3fbec902e03c76a.php delete mode 100644 data/cache/PHPStan/ae/8a/ae8ac29c1a321f3966a1c2c5b0ced21fa50f1b06.php delete mode 100644 data/cache/PHPStan/b1/3b/b13b871ad7aef06514cb36eeb7971605a44e32a2.php delete mode 100644 data/cache/PHPStan/b3/d8/b3d8069dba0a1e67e58db2439fc676faffa2bbe7.php delete mode 100644 data/cache/PHPStan/b4/46/b4468d537e8981d09e6e6b5e9a84f0f5267c83a6.php delete mode 100644 data/cache/PHPStan/b4/c3/b4c3c16c3efee2aa4112997b19a88162d9273fd5.php delete mode 100644 data/cache/PHPStan/b6/fc/b6fc8598ade47c8f9ced34f6bb705b94aae73c96.php delete mode 100644 data/cache/PHPStan/b8/57/b857f151d9eee738b2a728cadd71a52d2af1a83c.php delete mode 100644 data/cache/PHPStan/b8/e3/b8e3dca32ad19ac12c2fe3c286e7cfd5b97a93c3.php delete mode 100644 data/cache/PHPStan/b9/f5/b9f51c8eaabcec054c2de5a4493332627a7e190b.php delete mode 100644 data/cache/PHPStan/ba/45/ba45dfbbf41ccac63abd7024cde9758b704ab45e.php delete mode 100644 data/cache/PHPStan/ba/47/ba47a23cd182eb7bec5721914695adb03053c094.php delete mode 100644 data/cache/PHPStan/bb/8f/bb8f5e5fb1ab91df44808ba9b1fbd3ebdf1d021c.php delete mode 100644 data/cache/PHPStan/bc/2b/bc2b559377237532e608f642cbc72e3309f1f2fa.php delete mode 100644 data/cache/PHPStan/bc/e8/bce81fbc582defb6dd5dbd68543058765a3dff8b.php delete mode 100644 data/cache/PHPStan/bd/37/bd37ea4ef287a9aa0e114b52a027b2efb5d8f3be.php delete mode 100644 data/cache/PHPStan/bf/d2/bfd2fe383718086c7fd58237ae26b25915459537.php delete mode 100644 data/cache/PHPStan/c1/92/c1922562605ad2653aa5032f493c53c6c7e82ed0.php delete mode 100644 data/cache/PHPStan/c2/e9/c2e93f6dc26fab2f24f883eed87cf283d85255c8.php delete mode 100644 data/cache/PHPStan/c4/6b/c46b08a745e113d3444ae8a7aebcf01d43b2b54b.php delete mode 100644 data/cache/PHPStan/c6/90/c690e2bebb5d378158c041037dc531dec0616f44.php delete mode 100644 data/cache/PHPStan/c6/c7/c6c7e15d15806f232958ca2745aaa89dda159192.php delete mode 100644 data/cache/PHPStan/c7/3d/c73df6ee5044a0fb9003cad34d64f70e135e8c2a.php delete mode 100644 data/cache/PHPStan/c9/c2/c9c25e3685e0266e5464f4250be70d1eb1f61e02.php delete mode 100644 data/cache/PHPStan/ca/e9/cae98a0407200523afcfc69c3258e8f0355399a0.php delete mode 100644 data/cache/PHPStan/cc/7b/cc7b640f7f737016134e37c80752e603b801bc16.php delete mode 100644 data/cache/PHPStan/cc/a4/cca421c1ec9795196258ff6d5a5d167ed6817f8b.php delete mode 100644 data/cache/PHPStan/cc/f3/ccf3a128dd7dc46bd6f3a7dc119f8110dd1ced7f.php delete mode 100644 data/cache/PHPStan/cd/81/cd8187c54df620f355446b2bc7cd3894125463d1.php delete mode 100644 data/cache/PHPStan/ce/4b/ce4b30a72a5e2ba85367918e894068d4d8ad93a2.php delete mode 100644 data/cache/PHPStan/ce/e4/cee4d36311afa199a7ad1330e9863dcce72bb9d5.php delete mode 100644 data/cache/PHPStan/cf/be/cfbe786521a231a526b45d878f07f2214b1abaf6.php delete mode 100644 data/cache/PHPStan/d0/07/d007c7695ba5eb445ea5a7dcf6d406bead213429.php delete mode 100644 data/cache/PHPStan/d1/71/d171381da9e1fc3dfe6271e76cfc66ce8de8d815.php delete mode 100644 data/cache/PHPStan/d2/5a/d25a12b2ff83257315e6a18922d11f8fea5fe72a.php delete mode 100644 data/cache/PHPStan/d2/f6/d2f6b5ac15f6fa7012b3045cb7e68b009cfef69d.php delete mode 100644 data/cache/PHPStan/d4/12/d412241aafa86f3b0144cde635ff239c6fbebe89.php delete mode 100644 data/cache/PHPStan/d5/83/d58345230f80c9c457e5ef675579a4e8bb8f062d.php delete mode 100644 data/cache/PHPStan/d6/c7/d6c7894d2c3f31a89cbb701649ffdb29880305c3.php delete mode 100644 data/cache/PHPStan/d6/d1/d6d1cf91766bba92a19ba0f5f8ad32c56411dc23.php delete mode 100644 data/cache/PHPStan/d8/4f/d84f1f1b679a04eb41dfed1d9eb8bd63495a3739.php delete mode 100644 data/cache/PHPStan/d9/61/d9612a4104111b7f099f71a618f1e30a2b68fe04.php delete mode 100644 data/cache/PHPStan/d9/6e/d96e6114bae224af917ef66aa644cbd3d2ad388d.php delete mode 100644 data/cache/PHPStan/da/0c/da0c41b7b7efaab03b8c58d20ab83fa2b47876f4.php delete mode 100644 data/cache/PHPStan/da/91/da911c7c46b1b5fdf99e60f594bd1fa7b0de57f5.php delete mode 100644 data/cache/PHPStan/dc/a9/dca91084a6fffc5ff8585f980e51b9c4f4af7a0b.php delete mode 100644 data/cache/PHPStan/dd/35/dd35a6f2b8b307afb80055a2e8afbfc4be43623b.php delete mode 100644 data/cache/PHPStan/dd/5b/dd5b834cc67cb680840b8984056bd3aa642557a4.php delete mode 100644 data/cache/PHPStan/dd/ad/ddad4a9d3067ff46a5f269031f7ab097a5d8d512.php delete mode 100644 data/cache/PHPStan/dd/d1/ddd19efd73efd622a0e33a448ab1edf31f57217d.php delete mode 100644 data/cache/PHPStan/de/c1/dec120293f83544841608b0b8244f1b466274780.php delete mode 100644 data/cache/PHPStan/de/e4/dee4b9bf1b90f7e353e74a4a2acb6d708b044aad.php delete mode 100644 data/cache/PHPStan/df/ff/dfffda35031533d5f3c3def47b1112fc85c90940.php delete mode 100644 data/cache/PHPStan/e0/2a/e02afeaabe77653c97a35c740be56b13386484dd.php delete mode 100644 data/cache/PHPStan/e0/c3/e0c3951210468e1993eb63cab47a7b5b90900c58.php delete mode 100644 data/cache/PHPStan/e1/41/e141554384b393b6d9000a46e3db1e4a5ec223ec.php delete mode 100644 data/cache/PHPStan/e1/a7/e1a726c9b10a25c77ef8e287e3c5d2a17c2afc3e.php delete mode 100644 data/cache/PHPStan/e1/d4/e1d40f514e065d528e58310fc766719b31dda359.php delete mode 100644 data/cache/PHPStan/e3/c5/e3c553486b2485d247bd6bd0e3914b90c67a93e4.php delete mode 100644 data/cache/PHPStan/e3/d6/e3d64048576d3b4dd3c8a3c5bceb77330a26176f.php delete mode 100644 data/cache/PHPStan/e5/c1/e5c1632e349e087ae5a7c757d76a9ae1fb7c6acd.php delete mode 100644 data/cache/PHPStan/e5/c3/e5c3f42e60230db73c41ff5c2adf5539f3fa2f55.php delete mode 100644 data/cache/PHPStan/e7/8a/e78a9585a205dbbed43edcc6315dc48aad0b624f.php delete mode 100644 data/cache/PHPStan/e7/a2/e7a26daa24ce442984a6a8ba6ba0030afa924c8b.php delete mode 100644 data/cache/PHPStan/e8/32/e83247bd7b1c1562ffe438dfe5907427243da65b.php delete mode 100644 data/cache/PHPStan/e9/4e/e94ebb3b47f34e8ed39a6e2a65014583500d1d16.php delete mode 100644 data/cache/PHPStan/e9/ce/e9ceb39be3c5da139b626441971fd2099dcf1f6c.php delete mode 100644 data/cache/PHPStan/e9/fa/e9faed4e6fa23e59e4de957eaae032848e795a97.php delete mode 100644 data/cache/PHPStan/ea/e5/eae5d6db7da71566297d73f5a1df212309c98e5c.php delete mode 100644 data/cache/PHPStan/eb/1d/eb1d130969b88d4bd9d39f8891e9cec990844008.php delete mode 100644 data/cache/PHPStan/eb/77/eb77c9a005e659a453b0bc8b5041ef2a462a8015.php delete mode 100644 data/cache/PHPStan/eb/cf/ebcf66005f1f2acb717ffeac4774d1c041c59add.php delete mode 100644 data/cache/PHPStan/ec/c5/ecc5efd85deeb4d2d6a3f8e16cf1e8471d6364aa.php delete mode 100644 data/cache/PHPStan/ed/b5/edb5d8770b219cfde9b57e0972632076180c0483.php delete mode 100644 data/cache/PHPStan/ed/c6/edc69e39a3a4997e1aec459930c238ce0166f05f.php delete mode 100644 data/cache/PHPStan/f0/89/f089aed06f5659c1cd3a52f134da3b6c3e2d8647.php delete mode 100644 data/cache/PHPStan/f6/95/f695a19e30d9cc6991a7a2a70030e0b065aa3c24.php delete mode 100644 data/cache/PHPStan/f7/37/f7371664a9c19e9d8b4a1c2b4e105cd6fd35f0c3.php delete mode 100644 data/cache/PHPStan/f7/9a/f79a081e7346c5a2cda149dbaaeef2aea046a252.php delete mode 100644 data/cache/PHPStan/f7/f2/f7f2d3e743b6119918283d2ce2177a81d949b50c.php delete mode 100644 data/cache/PHPStan/f9/24/f924cd25dc973f55931bea8a8528ec94d3c94041.php delete mode 100644 data/cache/PHPStan/f9/f8/f9f8270bfe6983a1f413389b25714a94be6cbaaf.php delete mode 100644 data/cache/PHPStan/fb/dc/fbdcb17d80a93cfa22d6a6b6bcb7554780a3115e.php delete mode 100644 data/cache/PHPStan/fc/c4/fcc423010bc45eca703f6bc521b89cc82bfe0ff2.php delete mode 100644 data/cache/nette.configurator/Container_0680f21d46.php delete mode 100644 data/cache/nette.configurator/Container_0680f21d46.php.lock delete mode 100644 data/cache/nette.configurator/Container_0680f21d46.php.meta delete mode 100644 data/cache/nette.configurator/Container_e563100465.php delete mode 100644 data/cache/nette.configurator/Container_e563100465.php.lock delete mode 100644 data/cache/nette.configurator/Container_e563100465.php.meta delete mode 100644 data/resultCache.php delete mode 100644 phpstan.neon.dist diff --git a/composer.json b/composer.json index d7591c3..e62ccb5 100644 --- a/composer.json +++ b/composer.json @@ -28,11 +28,8 @@ }, "require-dev": { "phpspec/phpspec": "^6.2", - "phpunit/phpunit": "^9.4", - "phpstan/phpstan": "^0.12.51", - "phpstan/phpstan-deprecation-rules": "^0.12.4", - "phpstan/phpstan-phpunit": "^0.12.16", - "squizlabs/php_codesniffer": "^3.5.5" + "phpunit/phpunit": "^9.3", + "phpstan/phpstan": "^0.12" }, "autoload": { "psr-4": { diff --git a/data/cache/PHPStan/00/0a/000a4cddf31df8af174ad17be8dc3b09175dc73f.php b/data/cache/PHPStan/00/0a/000a4cddf31df8af174ad17be8dc3b09175dc73f.php deleted file mode 100644 index 299e6a9..0000000 --- a/data/cache/PHPStan/00/0a/000a4cddf31df8af174ad17be8dc3b09175dc73f.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:9:"TNewValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TNewValue";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TNewValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/00/67/0067eef7caa776617b55a580402020ecc32d9a07.php b/data/cache/PHPStan/00/67/0067eef7caa776617b55a580402020ecc32d9a07.php deleted file mode 100644 index 1ee6df0..0000000 --- a/data/cache/PHPStan/00/67/0067eef7caa776617b55a580402020ecc32d9a07.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603454189', - 'data' => - array ( - 0 => - array ( - 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', - 'modifiedTime' => 1603454189, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/03/6f/036f4d6560dcf9f7aefbcdd3132d0730b737fce3.php b/data/cache/PHPStan/03/6f/036f4d6560dcf9f7aefbcdd3132d0730b737fce3.php deleted file mode 100644 index 015b6a0..0000000 --- a/data/cache/PHPStan/03/6f/036f4d6560dcf9f7aefbcdd3132d0730b737fce3.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"Stack";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/03/ca/03ca84e5b6f3e4b22ae20bc4300cb0e203a7b7f4.php b/data/cache/PHPStan/03/ca/03ca84e5b6f3e4b22ae20bc4300cb0e203a7b7f4.php deleted file mode 100644 index 6a08c83..0000000 --- a/data/cache/PHPStan/03/ca/03ca84e5b6f3e4b22ae20bc4300cb0e203a7b7f4.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603454189', - 'data' => - array ( - 0 => - array ( - 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', - 'modifiedTime' => 1603454189, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/04/62/0462b2883ce7042964b9139cdb9d903f2bd674d2.php b/data/cache/PHPStan/04/62/0462b2883ce7042964b9139cdb9d903f2bd674d2.php deleted file mode 100644 index e628be3..0000000 --- a/data/cache/PHPStan/04/62/0462b2883ce7042964b9139cdb9d903f2bd674d2.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603454189', - 'data' => - array ( - 0 => - array ( - 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', - 'modifiedTime' => 1603454189, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/05/9d/059dfb281d3410a16432fd2a256fe58d1414348f.php b/data/cache/PHPStan/05/9d/059dfb281d3410a16432fd2a256fe58d1414348f.php deleted file mode 100644 index 63a510f..0000000 --- a/data/cache/PHPStan/05/9d/059dfb281d3410a16432fd2a256fe58d1414348f.php +++ /dev/null @@ -1,32 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php-1603543737', - 'data' => - array ( - '1b6e332f9601eb7172f28688d8d46d12' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\IntType', - 'functionName' => 'check', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/05/b7/05b7a2a3e5056cd3e0c4df8dee8aaf587c9db207.php b/data/cache/PHPStan/05/b7/05b7a2a3e5056cd3e0c4df8dee8aaf587c9db207.php deleted file mode 100644 index f02fc7c..0000000 --- a/data/cache/PHPStan/05/b7/05b7a2a3e5056cd3e0c4df8dee8aaf587c9db207.php +++ /dev/null @@ -1,7 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:95:"Objects implementing JsonSerializable -can customize their JSON representation when encoded with";}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:19:"json_encode.";}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:52:"https://php.net/manual/en/class.jsonserializable.php";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@since";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:3:"5.4";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/06/9f/069f575d514a669670e89f7af2cb19cfaf5ce0d1.php b/data/cache/PHPStan/06/9f/069f575d514a669670e89f7af2cb19cfaf5ce0d1.php deleted file mode 100644 index 5e9d775..0000000 --- a/data/cache/PHPStan/06/9f/069f575d514a669670e89f7af2cb19cfaf5ce0d1.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$set";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:50:"PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/06/a2/06a2193f7af66062cc312f781115c60e2ae203e8.php b/data/cache/PHPStan/06/a2/06a2193f7af66062cc312f781115c60e2ae203e8.php deleted file mode 100644 index 461be73..0000000 --- a/data/cache/PHPStan/06/a2/06a2193f7af66062cc312f781115c60e2ae203e8.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603454189', - 'data' => - array ( - 0 => - array ( - 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', - 'modifiedTime' => 1603454189, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/06/d8/06d864fd06c484549ae2f82f51eb54c2a4477ee1.php b/data/cache/PHPStan/06/d8/06d864fd06c484549ae2f82f51eb54c2a4477ee1.php deleted file mode 100644 index 06ae3f5..0000000 --- a/data/cache/PHPStan/06/d8/06d864fd06c484549ae2f82f51eb54c2a4477ee1.php +++ /dev/null @@ -1,13 +0,0 @@ - '1596634130', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', - 'modifiedTime' => 1596634130, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/07/0f/070fc590261c8efaa08151ed24abd20808f664eb.php b/data/cache/PHPStan/07/0f/070fc590261c8efaa08151ed24abd20808f664eb.php deleted file mode 100644 index 17646c6..0000000 --- a/data/cache/PHPStan/07/0f/070fc590261c8efaa08151ed24abd20808f664eb.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/07/6b/076bffd393d0ca1c70d57c8a1c1787a895a0996f.php b/data/cache/PHPStan/07/6b/076bffd393d0ca1c70d57c8a1c1787a895a0996f.php deleted file mode 100644 index dacf53c..0000000 --- a/data/cache/PHPStan/07/6b/076bffd393d0ca1c70d57c8a1c1787a895a0996f.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:27:"Representation of time zone";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:48:"https://php.net/manual/en/class.datetimezone.php";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/07/6c/076cabf11024934dfbb7015b8e4b4791229fc579.php b/data/cache/PHPStan/07/6c/076cabf11024934dfbb7015b8e4b4791229fc579.php deleted file mode 100644 index 90a0aae..0000000 --- a/data/cache/PHPStan/07/6c/076cabf11024934dfbb7015b8e4b4791229fc579.php +++ /dev/null @@ -1,1005 +0,0 @@ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/../../../../../jetbrains/phpstorm-stubs/json/json.stub-1603454189', - 'data' => - array ( - 'ce22f9e9c13f3d921a6a92b72bbfea45' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Objects implementing JsonSerializable - * can customize their JSON representation when encoded with - * json_encode. - * @link https://php.net/manual/en/class.jsonserializable.php - * @since 5.4 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => 'JsonSerializable', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '29e58b895d17147532984fbb53e5796f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Specify data which should be serialized to JSON - * @link https://php.net/manual/en/jsonserializable.jsonserialize.php - * @return mixed data which can be serialized by json_encode, - * which is a value of any type other than a resource. - * @since 5.4 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => 'JsonSerializable', - 'functionName' => 'jsonSerialize', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '90161977e0da9b179a049909480aa74d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param int $depth [optional] - * @param int $options [optional] - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => 'JsonIncrementalParser', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e5a9c15a6af0cd7b9a11db28b9b22598' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param string $json - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => 'JsonIncrementalParser', - 'functionName' => 'parse', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '31d9f61dce3f8f3bcfee5f3db84db7ff' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param string $filename - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => 'JsonIncrementalParser', - 'functionName' => 'parseFile', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '500a4b99bd26f8329fb7c9c4fe295581' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param int $options [optional] - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => 'JsonIncrementalParser', - 'functionName' => 'get', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'c8abc9f12d1c58d1e3bd5bc8b94307e6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >= 5.2.0, PECL json >= 1.2.0)
- * Returns the JSON representation of a value - * @link https://php.net/manual/en/function.json-encode.php - * @param mixed $value

- * The value being encoded. Can be any type except - * a resource. - *

- *

- * All string data must be UTF-8 encoded. - *

- *

PHP implements a superset of - * JSON - it will also encode and decode scalar types and NULL. The JSON standard - * only supports these values when they are nested inside an array or an object. - *

- * @param int $flags [optional]

- * Bitmask consisting of JSON_HEX_QUOT, - * JSON_HEX_TAG, - * JSON_HEX_AMP, - * JSON_HEX_APOS, - * JSON_NUMERIC_CHECK, - * JSON_PRETTY_PRINT, - * JSON_UNESCAPED_SLASHES, - * JSON_FORCE_OBJECT, - * JSON_UNESCAPED_UNICODE. - * JSON_THROW_ON_ERROR The behaviour of these - * constants is described on - * the JSON constants page. - *

- * @param int $depth [optional]

- * Set the maximum depth. Must be greater than zero. - *

- * @return string|false a JSON encoded string on success or FALSE on failure. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => 'json_encode', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '449514c61c5f2f7fa871127098ec7c0a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >= 5.2.0, PECL json >= 1.2.0)
- * Decodes a JSON string - * @link https://php.net/manual/en/function.json-decode.php - * @param string $json

- * The json string being decoded. - *

- *

- * This function only works with UTF-8 encoded strings. - *

- *

PHP implements a superset of - * JSON - it will also encode and decode scalar types and NULL. The JSON standard - * only supports these values when they are nested inside an array or an object. - *

- * @param bool $associative [optional]

- * When TRUE, returned objects will be converted into - * associative arrays. - *

- * @param int $depth [optional]

- * User specified recursion depth. - *

- * @param int $flags [optional]

- * Bitmask of JSON decode options:
- * {@see JSON_BIGINT_AS_STRING} decodes large integers as their original string value.
- * {@see JSON_INVALID_UTF8_IGNORE} ignores invalid UTF-8 characters,
- * {@see JSON_INVALID_UTF8_SUBSTITUTE} converts invalid UTF-8 characters to \\0xfffd,
- * {@see JSON_OBJECT_AS_ARRAY} decodes JSON objects as PHP array, since 7.2.0 used by default if $assoc parameter is null,
- * {@see JSON_THROW_ON_ERROR} when passed this flag, the error behaviour of these functions is changed. The global error state is left untouched, and if an error occurs that would otherwise set it, these functions instead throw a JsonException
- *

- * @return mixed the value encoded in json in appropriate - * PHP type. Values true, false and - * null (case-insensitive) are returned as TRUE, FALSE - * and NULL respectively. NULL is returned if the - * json cannot be decoded or if the encoded - * data is deeper than the recursion limit. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => 'json_decode', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'fe9dea59ebc7afcfc71c9d2f6491a670' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns the last error occurred - * @link https://php.net/manual/en/function.json-last-error.php - * @return int an integer, the value can be one of the following - * constants: - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => 'json_last_error', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '0f9953b4f9f1c7b62993e7e712052979' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns the error string of the last json_encode() or json_decode() call, which did not specify JSON_THROW_ON_ERROR. - * @link https://php.net/manual/en/function.json-last-error-msg.php - * @return string|false Returns the error message on success, "No error" if no error has occurred, or FALSE on failure. - * @since 5.5 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => 'json_last_error_msg', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'c7c9aad12659bc0039fc684a91415463' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * All < and > are converted to \\u003C and \\u003E. - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e2fe476b57f64565c100b1dfa213eb44' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * All &#38;s are converted to \\u0026. - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'b868ad4f23e1a17bcef8df07992394f9' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * All \' are converted to \\u0027. - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'c343cf1e06e29d453c7cad113d49ce3e' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * All " are converted to \\u0022. - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '72d6b80d0d83ff3841f6dbff11a25aa7' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Outputs an object rather than an array when a non-associative array is - * used. Especially useful when the recipient of the output is expecting - * an object and the array is empty. - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '2723d50a3ee64ce0d2138c67abcc491f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Encodes numeric strings as numbers. - * @since 5.3.3 - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '61f09ffa7f1fb4c7e74883aead69bc26' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Don\'t escape /. - * @since 5.4 - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'f70d6cec7bdef8b8610c51b697bacab3' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Use whitespace in returned data to format it. - * @since 5.4 - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'cf3e16e7f0d092cbd965aee2156c63b6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Encode multibyte Unicode characters literally (default is to escape as \\uXXXX). - * @since 5.4 - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '00a6b57b7f49c7a5985bcb5011f4c829' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Occurs with underflow or with the modes mismatch. - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '99f03068d11b5030bc104cb76104b448' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Control character error, possibly incorrectly encoded. - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'c4490f9d4fc92288012a9d4a2972633b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Malformed UTF-8 characters, possibly incorrectly encoded. This - * constant is available as of PHP 5.3.3. - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '48c5e0c8c264833e08a032e50d688f13' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - *

- * The object or array passed to json_encode include - * recursive references and cannot be encoded. - * If the JSON_PARTIAL_OUTPUT_ON_ERROR option was - * given, NULL will be encoded in the place of the recursive reference. - *

- *

- * This constant is available as of PHP 5.5.0. - *

- * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e622864567a826d734a330101523d8fa' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - *

- * The value passed to json_encode includes either - * NAN - * or INF. - * If the JSON_PARTIAL_OUTPUT_ON_ERROR option was - * given, 0 will be encoded in the place of these - * special numbers. - *

- *

- * This constant is available as of PHP 5.5.0. - *

- * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e5dd2878ba4d6620e5d3ace4fd1fabcf' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - *

- * A value of an unsupported type was given to - * json_encode, such as a resource. - * If the JSON_PARTIAL_OUTPUT_ON_ERROR option was - * given, NULL will be encoded in the place of the unsupported value. - *

- *

- * This constant is available as of PHP 5.5.0. - *

- * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'aba000380fc514bcf8ed5cb6ec19b1cd' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * No error has occurred. - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'a93cd495d6f102c63900a97ff10738c7' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * The maximum stack depth has been exceeded. - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'bed397cae0655592a280b52beeb24a53' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Syntax error. - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e711f2725c35022a3ff7b2b594a541ac' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Decodes JSON objects as PHP array. - * @since 5.4 - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'c15abe2acbf36a5e7d15fad55c653d55' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Decodes large integers as their original string value. - * @since 5.4 - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '1e56e147aff44410def2ec5b7fb2fdba' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Ensures that float values are always encoded as a float value. - * @since 5.6.6 - * @link https://php.net/manual/en/json.constants.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'd78895e39b46847a54d4d053bf0ef48d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * The line terminators are kept unescaped when JSON_UNESCAPED_UNICODE is supplied. - * It uses the same behaviour as it was before PHP 7.1 without this constant. Available since PHP 7.1.0. - * @link https://php.net/manual/en/json.constants.php - * @since 7.1 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '58698f74339b0e0c0c88ee4d2141fa99' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Ignore invalid UTF-8 characters. - * @since 7.2 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '27e03666e8bf5db58adaa58a0ea86335' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Convert invalid UTF-8 characters to \\0xfffd (Unicode Character \'REPLACEMENT CHARACTER\'). - * @since 7.2 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'cf716571452ba67133db705df6a93821' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * A key starting with \\u0000 character was in the string passed to json_decode() when decoding a JSON object into a PHP object. - * Available since PHP 7.0.0. - * @link https://php.net/manual/en/json.constants.php - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '7377b7b591df3eb23ec0ac8588907e80' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Single unpaired UTF-16 surrogate in unicode escape contained in the JSON string passed to json_encode(). - * Available since PHP 7.0.0. - * @link https://php.net/manual/en/json.constants.php - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '54316452450462c997431d78f8c91503' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Throws JsonException if an error occurs instead of setting the global error state - * that is retrieved with json_last_error() and json_last_error_msg(). - * - * {@see JSON_PARTIAL_OUTPUT_ON_ERROR} takes precedence over JSON_THROW_ON_ERROR. - * @since 7.3 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => NULL, - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '190526aedcf67fea60e80b6cb9cc7c41' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Class JsonException - * - *

A new flag has been added, JSON_THROW_ON_ERROR, which can be used with - * json_decode() or json_encode() and causes these functions to throw a - * JsonException upon an error, instead of setting the global error state that - * is retrieved with json_last_error(). JSON_PARTIAL_OUTPUT_ON_ERROR takes - * precedence over JSON_THROW_ON_ERROR. - *

- * - * @since 7.3 - * @link https://wiki.php.net/rfc/json_throw_on_error - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - 'pure' => 'JetBrains\\PhpStorm\\Pure', - ), - 'className' => 'JsonException', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/07/8b/078b14374d2b72d3812f6176226ce1d2a8367e82.php b/data/cache/PHPStan/07/8b/078b14374d2b72d3812f6176226ce1d2a8367e82.php deleted file mode 100644 index 58d288e..0000000 --- a/data/cache/PHPStan/07/8b/078b14374d2b72d3812f6176226ce1d2a8367e82.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/07/cb/07cb1720fd3cfffaaeec87b0a173a680d4097733.php b/data/cache/PHPStan/07/cb/07cb1720fd3cfffaaeec87b0a173a680d4097733.php deleted file mode 100644 index b80f699..0000000 --- a/data/cache/PHPStan/07/cb/07cb1720fd3cfffaaeec87b0a173a680d4097733.php +++ /dev/null @@ -1,29 +0,0 @@ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub-1603454189', - 'data' => - array ( - '8c1804930863cbe7cd9960b8061e3a2a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return string|false - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ReflectionFunctionAbstract', - 'functionName' => 'getFileName', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/07/f0/07f0940f43b5f622f819512dd8c46d1472b549d8.php b/data/cache/PHPStan/07/f0/07f0940f43b5f622f819512dd8c46d1472b549d8.php deleted file mode 100644 index bf64bc9..0000000 --- a/data/cache/PHPStan/07/f0/07f0940f43b5f622f819512dd8c46d1472b549d8.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603454189', - 'data' => - array ( - 0 => - array ( - 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', - 'modifiedTime' => 1603454189, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/08/0c/080ca6f13fa2ee0cfccaa2cd0d752e72b7360192.php b/data/cache/PHPStan/08/0c/080ca6f13fa2ee0cfccaa2cd0d752e72b7360192.php deleted file mode 100644 index d00c7ac..0000000 --- a/data/cache/PHPStan/08/0c/080ca6f13fa2ee0cfccaa2cd0d752e72b7360192.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603535699', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/CheckerInterface.php', - 'modifiedTime' => 1603535699, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/09/8a/098a4a95badc545a86733693d59175f77f5944f4.php b/data/cache/PHPStan/09/8a/098a4a95badc545a86733693d59175f77f5944f4.php deleted file mode 100644 index a5f9fe3..0000000 --- a/data/cache/PHPStan/09/8a/098a4a95badc545a86733693d59175f77f5944f4.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:13:"PriorityQueue";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/09/e2/09e26534d603e6c6f9628db80d83350442b9a1fd.php b/data/cache/PHPStan/09/e2/09e26534d603e6c6f9628db80d83350442b9a1fd.php deleted file mode 100644 index cb4cab4..0000000 --- a/data/cache/PHPStan/09/e2/09e26534d603e6c6f9628db80d83350442b9a1fd.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:1;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:20:"\\OutOfRangeException";}s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/0a/f4/0af45682fbe8d6e04191767c1363cc64f4e7abaa.php b/data/cache/PHPStan/0a/f4/0af45682fbe8d6e04191767c1363cc64f4e7abaa.php deleted file mode 100644 index 60f746c..0000000 --- a/data/cache/PHPStan/0a/f4/0af45682fbe8d6e04191767c1363cc64f4e7abaa.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:58:"Classes implementing Countable can be used with the";}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:22:"count function.";}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:45:"https://php.net/manual/en/class.countable.php";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/0e/2b/0e2be59f615a7db560c2bcb12a3357a94bbbada1.php b/data/cache/PHPStan/0e/2b/0e2be59f615a7db560c2bcb12a3357a94bbbada1.php deleted file mode 100644 index 36586fa..0000000 --- a/data/cache/PHPStan/0e/2b/0e2be59f615a7db560c2bcb12a3357a94bbbada1.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:5:"TNode";s:5:"bound";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"DOMNode";}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"Traversable";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TNode";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/11/3d/113dafc11b645c0fbc6b34d171ef40371f8e7ebc.php b/data/cache/PHPStan/11/3d/113dafc11b645c0fbc6b34d171ef40371f8e7ebc.php deleted file mode 100644 index e73354f..0000000 --- a/data/cache/PHPStan/11/3d/113dafc11b645c0fbc6b34d171ef40371f8e7ebc.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603454189', - 'data' => - array ( - 0 => - array ( - 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', - 'modifiedTime' => 1603454189, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/11/74/11747a8fdf09ab4777eb7d67cc52bff2d17cd784.php b/data/cache/PHPStan/11/74/11747a8fdf09ab4777eb7d67cc52bff2d17cd784.php deleted file mode 100644 index 3e24ee3..0000000 --- a/data/cache/PHPStan/11/74/11747a8fdf09ab4777eb7d67cc52bff2d17cd784.php +++ /dev/null @@ -1,6 +0,0 @@ - '1603535530-v2', - 'data' => false, -)); \ No newline at end of file diff --git a/data/cache/PHPStan/12/e1/12e1452bb32fb5ef782e3b242cfea3674fd93b16.php b/data/cache/PHPStan/12/e1/12e1452bb32fb5ef782e3b242cfea3674fd93b16.php deleted file mode 100644 index 085b926..0000000 --- a/data/cache/PHPStan/12/e1/12e1452bb32fb5ef782e3b242cfea3674fd93b16.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603543737', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php', - 'modifiedTime' => 1603543737, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/17/20/17209d861d2409564384d2e4f41e119b1fec1d82.php b/data/cache/PHPStan/17/20/17209d861d2409564384d2e4f41e119b1fec1d82.php deleted file mode 100644 index b4fb1d9..0000000 --- a/data/cache/PHPStan/17/20/17209d861d2409564384d2e4f41e119b1fec1d82.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:11:"$comparator";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/19/27/192715a5da745979feffe2d14c91785f25a6596b.php b/data/cache/PHPStan/19/27/192715a5da745979feffe2d14c91785f25a6596b.php deleted file mode 100644 index 36357bd..0000000 --- a/data/cache/PHPStan/19/27/192715a5da745979feffe2d14c91785f25a6596b.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603454189', - 'data' => - array ( - 0 => - array ( - 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', - 'modifiedTime' => 1603454189, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/1a/46/1a4690126fcad20d59b0b8d5490d6289531dfaa0.php b/data/cache/PHPStan/1a/46/1a4690126fcad20d59b0b8d5490d6289531dfaa0.php deleted file mode 100644 index 57b8d7d..0000000 --- a/data/cache/PHPStan/1a/46/1a4690126fcad20d59b0b8d5490d6289531dfaa0.php +++ /dev/null @@ -1,13 +0,0 @@ - '1596634130', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', - 'modifiedTime' => 1596634130, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/1a/86/1a866dd0220d2779d8d9615a8fc260920bffa07b.php b/data/cache/PHPStan/1a/86/1a866dd0220d2779d8d9615a8fc260920bffa07b.php deleted file mode 100644 index 25e58f8..0000000 --- a/data/cache/PHPStan/1a/86/1a866dd0220d2779d8d9615a8fc260920bffa07b.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:18:"$originalClassName";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode":1:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$methods";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:15:"@phpstan-return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:50:"PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"MockObject";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/1a/f7/1af7fd87ba6c17b79c09aff585809402189a7bf2.php b/data/cache/PHPStan/1a/f7/1af7fd87ba6c17b79c09aff585809402189a7bf2.php deleted file mode 100644 index 3654099..0000000 --- a/data/cache/PHPStan/1a/f7/1af7fd87ba6c17b79c09aff585809402189a7bf2.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"DOMElement";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/1b/1c/1b1c8fdc936455eaed81170cb41f773613fd8302.php b/data/cache/PHPStan/1b/1c/1b1c8fdc936455eaed81170cb41f773613fd8302.php deleted file mode 100644 index 36456a7..0000000 --- a/data/cache/PHPStan/1b/1c/1b1c8fdc936455eaed81170cb41f773613fd8302.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:8:"@extends";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ExtendsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"Traversable";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/1c/f4/1cf495ba97114552ec359076767cf935b252b415.php b/data/cache/PHPStan/1c/f4/1cf495ba97114552ec359076767cf935b252b415.php deleted file mode 100644 index d873c38..0000000 --- a/data/cache/PHPStan/1c/f4/1cf495ba97114552ec359076767cf935b252b415.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$offset";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/1d/67/1d6730ede242df41aefe1fb81aefa2b733c69a34.php b/data/cache/PHPStan/1d/67/1d6730ede242df41aefe1fb81aefa2b733c69a34.php deleted file mode 100644 index fb03df9..0000000 --- a/data/cache/PHPStan/1d/67/1d6730ede242df41aefe1fb81aefa2b733c69a34.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@property-read";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PropertyTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:12:"propertyName";s:7:"$length";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/1e/c0/1ec0bba8e80104e915c67a47e41e6ccd3db9e775.php b/data/cache/PHPStan/1e/c0/1ec0bba8e80104e915c67a47e41e6ccd3db9e775.php deleted file mode 100644 index 12ae91c..0000000 --- a/data/cache/PHPStan/1e/c0/1ec0bba8e80104e915c67a47e41e6ccd3db9e775.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$key";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/1f/8d/1f8d466ad5e8885af1903b1fe1cb1f36c817d1e1.php b/data/cache/PHPStan/1f/8d/1f8d466ad5e8885af1903b1fe1cb1f36c817d1e1.php deleted file mode 100644 index 67176c0..0000000 --- a/data/cache/PHPStan/1f/8d/1f8d466ad5e8885af1903b1fe1cb1f36c817d1e1.php +++ /dev/null @@ -1,31 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NullableType.php-1603543737', - 'data' => - array ( - '95ad8a06fe5467ae6cee77cd274b107d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\NullableType', - 'functionName' => 'check', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/20/02/20028a8ecfb4fa0bf45ec7541fbd80ff7634a034.php b/data/cache/PHPStan/20/02/20028a8ecfb4fa0bf45ec7541fbd80ff7634a034.php deleted file mode 100644 index e6f541c..0000000 --- a/data/cache/PHPStan/20/02/20028a8ecfb4fa0bf45ec7541fbd80ff7634a034.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:5:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:8:"TDefault";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$key";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"TDefault";}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$default";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"TDefault";}}}s:11:"description";s:0:"";}}i:4;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:20:"OutOfBoundsException";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/24/c4/24c401c263b224b9ca501a1a0401a2d22dfbb4dd.php b/data/cache/PHPStan/24/c4/24c401c263b224b9ca501a1a0401a2d22dfbb4dd.php deleted file mode 100644 index 61cd79b..0000000 --- a/data/cache/PHPStan/24/c4/24c401c263b224b9ca501a1a0401a2d22dfbb4dd.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:20:"\\OutOfRangeException";}s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/26/8d/268d6f57871df4f4386119949f81614448e9d071.php b/data/cache/PHPStan/26/8d/268d6f57871df4f4386119949f81614448e9d071.php deleted file mode 100644 index 2e3bbad..0000000 --- a/data/cache/PHPStan/26/8d/268d6f57871df4f4386119949f81614448e9d071.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$offset";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/27/c5/27c584c6dba4696664fe4fa6318002eddf6f1590.php b/data/cache/PHPStan/27/c5/27c584c6dba4696664fe4fa6318002eddf6f1590.php deleted file mode 100644 index 680715d..0000000 --- a/data/cache/PHPStan/27/c5/27c584c6dba4696664fe4fa6318002eddf6f1590.php +++ /dev/null @@ -1,30 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/TypeInterface.php-1603535699', - 'data' => - array ( - 'fb8f2ee28beb66b9099b3b04ed20833e' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - 'functionName' => 'check', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/27/c6/27c6a66faa4da5b038ea4bae0f0cbbbf5af332a7.php b/data/cache/PHPStan/27/c6/27c6a66faa4da5b038ea4bae0f0cbbbf5af332a7.php deleted file mode 100644 index a3e6fe8..0000000 --- a/data/cache/PHPStan/27/c6/27c6a66faa4da5b038ea4bae0f0cbbbf5af332a7.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/29/87/298753dd552f0d66eb99b8cfc191f2521ac04758.php b/data/cache/PHPStan/29/87/298753dd552f0d66eb99b8cfc191f2521ac04758.php deleted file mode 100644 index 8fe61b7..0000000 --- a/data/cache/PHPStan/29/87/298753dd552f0d66eb99b8cfc191f2521ac04758.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:8:"@package";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:21:"Cubicl\\StructureCheck";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/29/c0/29c0d800926232616d8c84ea5e7b7e5a581eb9fa.php b/data/cache/PHPStan/29/c0/29c0d800926232616d8c84ea5e7b7e5a581eb9fa.php deleted file mode 100644 index 69fcc1b..0000000 --- a/data/cache/PHPStan/29/c0/29c0d800926232616d8c84ea5e7b7e5a581eb9fa.php +++ /dev/null @@ -1,160 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php-1603538228', - 'data' => - array ( - 'df768a3f7dc764b624711a5215cc9c16' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template T - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\EnumType', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '246b93626d6092ed684069ab78be299a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** @var array */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\EnumType', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'T' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Cubicl\\StructureCheck\\Type\\EnumType', - 'functionName' => NULL, - )), - 'name' => 'T', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '075449f4cf74cd381283e9e4ba636feb' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param array $values - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\EnumType', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'T' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Cubicl\\StructureCheck\\Type\\EnumType', - 'functionName' => NULL, - )), - 'name' => 'T', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '3a32117658e0cf0241c3ee0c28bcce47' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param string $key - * @param T $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\EnumType', - 'functionName' => 'check', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'T' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Cubicl\\StructureCheck\\Type\\EnumType', - 'functionName' => NULL, - )), - 'name' => 'T', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/29/d8/29d8630041d3d6e11e5f22f0021d9ec45b4d28e0.php b/data/cache/PHPStan/29/d8/29d8630041d3d6e11e5f22f0021d9ec45b4d28e0.php deleted file mode 100644 index 10ba3ce..0000000 --- a/data/cache/PHPStan/29/d8/29d8630041d3d6e11e5f22f0021d9ec45b4d28e0.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$key";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/2d/a7/2da7442a86f1add9f063f537221fc42a27aefbf3.php b/data/cache/PHPStan/2d/a7/2da7442a86f1add9f063f537221fc42a27aefbf3.php deleted file mode 100644 index b33ea65..0000000 --- a/data/cache/PHPStan/2d/a7/2da7442a86f1add9f063f537221fc42a27aefbf3.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:30:"Representation of date period.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:46:"https://php.net/manual/en/class.dateperiod.php";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/2d/d9/2dd92d256fac6b068b605a5a15043d4a4fa32baa.php b/data/cache/PHPStan/2d/d9/2dd92d256fac6b068b605a5a15043d4a4fa32baa.php deleted file mode 100644 index 24da950..0000000 --- a/data/cache/PHPStan/2d/d9/2dd92d256fac6b068b605a5a15043d4a4fa32baa.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"Vector";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/2d/ed/2ded3132f4311288c6435765e82b9da62d91fd03.php b/data/cache/PHPStan/2d/ed/2ded3132f4311288c6435765e82b9da62d91fd03.php deleted file mode 100644 index 7564cdf..0000000 --- a/data/cache/PHPStan/2d/ed/2ded3132f4311288c6435765e82b9da62d91fd03.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"\\Iterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"\\ArrayAccess";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/2e/12/2e12cbe97f9eb536b2153c10adc7133e676a45b0.php b/data/cache/PHPStan/2e/12/2e12cbe97f9eb536b2153c10adc7133e676a45b0.php deleted file mode 100644 index e15021b..0000000 --- a/data/cache/PHPStan/2e/12/2e12cbe97f9eb536b2153c10adc7133e676a45b0.php +++ /dev/null @@ -1,9 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:44:"Class used to represent anonymous functions.";}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:290:"

Anonymous functions, implemented in PHP 5.3, yield objects of this type. -This fact used to be considered an implementation detail, but it can now be relied upon. -Starting with PHP 5.4, this class has methods that allow further control of the anonymous function after it has been created.";}i:2;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:201:"

Besides the methods listed here, this class also has an __invoke method. -This is for consistency with other classes that implement calling magic, as this method is not used for calling the function.";}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:50:"https://secure.php.net/manual/en/class.closure.php";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/2e/26/2e269e485984ddc55f3962b7479e31b1b9f2d8d9.php b/data/cache/PHPStan/2e/26/2e269e485984ddc55f3962b7479e31b1b9f2d8d9.php deleted file mode 100644 index 0c49e06..0000000 --- a/data/cache/PHPStan/2e/26/2e269e485984ddc55f3962b7479e31b1b9f2d8d9.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"Traversable";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/2e/2f/2e2f3bb1f35f58a1472e2db20e169921422513ff.php b/data/cache/PHPStan/2e/2f/2e2f3bb1f35f58a1472e2db20e169921422513ff.php deleted file mode 100644 index 45c662f..0000000 --- a/data/cache/PHPStan/2e/2f/2e2f3bb1f35f58a1472e2db20e169921422513ff.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603543737', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php', - 'modifiedTime' => 1603543737, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/2e/3e/2e3e73199710ae5c17113eb6677d189c815767be.php b/data/cache/PHPStan/2e/3e/2e3e73199710ae5c17113eb6677d189c815767be.php deleted file mode 100644 index 92648c0..0000000 --- a/data/cache/PHPStan/2e/3e/2e3e73199710ae5c17113eb6677d189c815767be.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:5:"$args";s:11:"description";s:0:"";}}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/2e/9a/2e9ae067cd96c4393ffd0adce50e1f523be8bab5.php b/data/cache/PHPStan/2e/9a/2e9ae067cd96c4393ffd0adce50e1f523be8bab5.php deleted file mode 100644 index 1d1b662..0000000 --- a/data/cache/PHPStan/2e/9a/2e9ae067cd96c4393ffd0adce50e1f523be8bab5.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/2f/60/2f6046ac822d7a59a7c50279aa61a17b8f7fde8d.php b/data/cache/PHPStan/2f/60/2f6046ac822d7a59a7c50279aa61a17b8f7fde8d.php deleted file mode 100644 index 2184d51..0000000 --- a/data/cache/PHPStan/2f/60/2f6046ac822d7a59a7c50279aa61a17b8f7fde8d.php +++ /dev/null @@ -1,31 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/AnyType.php-1603543737', - 'data' => - array ( - '5e6e56807b68724f81d92cd5093bb74b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\AnyType', - 'functionName' => 'check', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/31/a4/31a4236008d14b2699263a18271c5ccd8b633f9b.php b/data/cache/PHPStan/31/a4/31a4236008d14b2699263a18271c5ccd8b633f9b.php deleted file mode 100644 index 8f50637..0000000 --- a/data/cache/PHPStan/31/a4/31a4236008d14b2699263a18271c5ccd8b633f9b.php +++ /dev/null @@ -1,741 +0,0 @@ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub-1603454189', - 'data' => - array ( - '5fefa72ba6c5ecec772c5b030d5047b8' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue - * @implements \\Iterator - * @implements \\ArrayAccess - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplDoublyLinkedList', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'be16ceb69e39fe489d6579302acbcba6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param int $index - * @param TValue $newval - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplDoublyLinkedList', - 'functionName' => 'add', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplDoublyLinkedList', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '53699c87e61d55ec3e526afeb680db27' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplDoublyLinkedList', - 'functionName' => 'pop', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplDoublyLinkedList', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '2a5400711b16a1e637887ddc2bd07b6f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplDoublyLinkedList', - 'functionName' => 'shift', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplDoublyLinkedList', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '80a77c52931f5b7f0cb3989a20dceb1c' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue $value - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplDoublyLinkedList', - 'functionName' => 'push', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplDoublyLinkedList', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '94c32a64cb21e09f40f0a0fcc030cae6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue $value - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplDoublyLinkedList', - 'functionName' => 'unshift', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplDoublyLinkedList', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'd83b96ac119a858f88c3a268c9a76493' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplDoublyLinkedList', - 'functionName' => 'top', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplDoublyLinkedList', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '426e73813fa5c6970c6568999122dc78' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplDoublyLinkedList', - 'functionName' => 'bottom', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplDoublyLinkedList', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '81439ba604c1a430f7b67736f2e4294d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue - * @extends \\SplDoublyLinkedList - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplQueue', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '9a7bec06e7b94ad1920ebaf0de9602d1' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue $value - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplQueue', - 'functionName' => 'enqueue', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplQueue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '714c20d1d100313c4bc2512c073df682' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplQueue', - 'functionName' => 'dequeue', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplQueue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '421af62be6066b7adab273fdf120b9f6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TPriority - * @template TValue - * - * @implements \\Iterator - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplPriorityQueue', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'c63d4f9d43241883337ab6cdf2c7de50' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TPriority $priority1 - * @param TPriority $priority2 - * @return int - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplPriorityQueue', - 'functionName' => 'compare', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TPriority' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplPriorityQueue', - 'functionName' => NULL, - )), - 'name' => 'TPriority', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplPriorityQueue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'afcc04f65080f2a768d1047988332bfa' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue $value - * @param TPriority $priority - * @return true - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplPriorityQueue', - 'functionName' => 'insert', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TPriority' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplPriorityQueue', - 'functionName' => NULL, - )), - 'name' => 'TPriority', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplPriorityQueue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'cd4fb3c6c3ada2f32dae6bb29151df33' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TPriority|TValue|array{priority: TPriority, data: TValue} - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplPriorityQueue', - 'functionName' => 'top', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TPriority' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplPriorityQueue', - 'functionName' => NULL, - )), - 'name' => 'TPriority', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplPriorityQueue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '8549a36c30a9540905826e11b91af607' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TPriority|TValue|array{priority: TPriority, data: TValue} - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplPriorityQueue', - 'functionName' => 'extract', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TPriority' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplPriorityQueue', - 'functionName' => NULL, - )), - 'name' => 'TPriority', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplPriorityQueue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '1fa959ebf295cf38086c58989b819679' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TPriority|TValue|array{priority: TPriority, data: TValue} - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplPriorityQueue', - 'functionName' => 'current', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TPriority' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplPriorityQueue', - 'functionName' => NULL, - )), - 'name' => 'TPriority', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplPriorityQueue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/32/f5/32f5fec45d4b32f3210ea2d26ada80cce97bf93a.php b/data/cache/PHPStan/32/f5/32f5fec45d4b32f3210ea2d26ada80cce97bf93a.php deleted file mode 100644 index 29ac168..0000000 --- a/data/cache/PHPStan/32/f5/32f5fec45d4b32f3210ea2d26ada80cce97bf93a.php +++ /dev/null @@ -1,32 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php-1603543737', - 'data' => - array ( - '32d953ad135b9f9d28beb9e797622587' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\ListType', - 'functionName' => 'check', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/33/cb/33cbab2a0375cfe7eab5f365201a0ff6bd379f52.php b/data/cache/PHPStan/33/cb/33cbab2a0375cfe7eab5f365201a0ff6bd379f52.php deleted file mode 100644 index 74026e3..0000000 --- a/data/cache/PHPStan/33/cb/33cbab2a0375cfe7eab5f365201a0ff6bd379f52.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:17:"IteratorAggregate";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"ArrayAccess";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/34/57/34574fdc7ea28d1d204545e2388b5127aae5afa5.php b/data/cache/PHPStan/34/57/34574fdc7ea28d1d204545e2388b5127aae5afa5.php deleted file mode 100644 index d72f8e9..0000000 --- a/data/cache/PHPStan/34/57/34574fdc7ea28d1d204545e2388b5127aae5afa5.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/37/e2/37e2585f41ebe98e95c23da14cc321a0e47b0a39.php b/data/cache/PHPStan/37/e2/37e2585f41ebe98e95c23da14cc321a0e47b0a39.php deleted file mode 100644 index 68edc04..0000000 --- a/data/cache/PHPStan/37/e2/37e2585f41ebe98e95c23da14cc321a0e47b0a39.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603543737', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NullableType.php', - 'modifiedTime' => 1603543737, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/38/04/38045ba278fa9b1c1e65799631956e11d71b7594.php b/data/cache/PHPStan/38/04/38045ba278fa9b1c1e65799631956e11d71b7594.php deleted file mode 100644 index e139e1d..0000000 --- a/data/cache/PHPStan/38/04/38045ba278fa9b1c1e65799631956e11d71b7594.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:14:"ErrorInterface";}}}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/38/7d/387d6413d19f39beb6600348ff66de7ea6093239.php b/data/cache/PHPStan/38/7d/387d6413d19f39beb6600348ff66de7ea6093239.php deleted file mode 100644 index 2c79b99..0000000 --- a/data/cache/PHPStan/38/7d/387d6413d19f39beb6600348ff66de7ea6093239.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/3c/95/3c952c875187cfceaa9d45d804265a237e4d30ab.php b/data/cache/PHPStan/3c/95/3c952c875187cfceaa9d45d804265a237e4d30ab.php deleted file mode 100644 index c200198..0000000 --- a/data/cache/PHPStan/3c/95/3c952c875187cfceaa9d45d804265a237e4d30ab.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"false";}}}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/3e/26/3e26b31a78a21b4213843359a4f95e68bf222ed5.php b/data/cache/PHPStan/3e/26/3e26b31a78a21b4213843359a4f95e68bf222ed5.php deleted file mode 100644 index 23259c2..0000000 --- a/data/cache/PHPStan/3e/26/3e26b31a78a21b4213843359a4f95e68bf222ed5.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"object";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/40/d6/40d6be0cf227d5a9f6426dee54d0a4b47727af5f.php b/data/cache/PHPStan/40/d6/40d6be0cf227d5a9f6426dee54d0a4b47727af5f.php deleted file mode 100644 index cb274a1..0000000 --- a/data/cache/PHPStan/40/d6/40d6be0cf227d5a9f6426dee54d0a4b47727af5f.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603543737', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php', - 'modifiedTime' => 1603543737, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/42/ce/42ce094bf24aa8bbe2c88b7f72201a06e42b58b4.php b/data/cache/PHPStan/42/ce/42ce094bf24aa8bbe2c88b7f72201a06e42b58b4.php deleted file mode 100644 index ecdf154..0000000 --- a/data/cache/PHPStan/42/ce/42ce094bf24aa8bbe2c88b7f72201a06e42b58b4.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Iterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:17:"IteratorAggregate";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"ArrayAccess";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/42/d3/42d391c6764f72d0ee5973f27e876cf4100b36f4.php b/data/cache/PHPStan/42/d3/42d391c6764f72d0ee5973f27e876cf4100b36f4.php deleted file mode 100644 index b0d6ef7..0000000 --- a/data/cache/PHPStan/42/d3/42d391c6764f72d0ee5973f27e876cf4100b36f4.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603454189', - 'data' => - array ( - 0 => - array ( - 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', - 'modifiedTime' => 1603454189, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/42/f8/42f8a9f3d5ffa98ae51a052d21766469fdd9808a.php b/data/cache/PHPStan/42/f8/42f8a9f3d5ffa98ae51a052d21766469fdd9808a.php deleted file mode 100644 index ecc51bf..0000000 --- a/data/cache/PHPStan/42/f8/42f8a9f3d5ffa98ae51a052d21766469fdd9808a.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/43/4c/434c31ff1e0bcac52251686abedbaa3f6c3ae48f.php b/data/cache/PHPStan/43/4c/434c31ff1e0bcac52251686abedbaa3f6c3ae48f.php deleted file mode 100644 index 4563054..0000000 --- a/data/cache/PHPStan/43/4c/434c31ff1e0bcac52251686abedbaa3f6c3ae48f.php +++ /dev/null @@ -1,32 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php-1603543737', - 'data' => - array ( - '5800c7de6c8e0ee228ea21553002119e' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\FloatType', - 'functionName' => 'check', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/43/51/435148cb1ef15a911b9002deb99f629a5db739c1.php b/data/cache/PHPStan/43/51/435148cb1ef15a911b9002deb99f629a5db739c1.php deleted file mode 100644 index a2cefc4..0000000 --- a/data/cache/PHPStan/43/51/435148cb1ef15a911b9002deb99f629a5db739c1.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:5:"TKey2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"iterable";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TKey2";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TKey2";}}}i:1;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/44/06/4406ae5d4f407633e6d3dfac02e55c8d3c749459.php b/data/cache/PHPStan/44/06/4406ae5d4f407633e6d3dfac02e55c8d3c749459.php deleted file mode 100644 index e3f23ea..0000000 --- a/data/cache/PHPStan/44/06/4406ae5d4f407633e6d3dfac02e55c8d3c749459.php +++ /dev/null @@ -1,6 +0,0 @@ - '1603543737-v2', - 'data' => false, -)); \ No newline at end of file diff --git a/data/cache/PHPStan/45/93/4593abb322bb5b82328469fcd6a02d65e457268e.php b/data/cache/PHPStan/45/93/4593abb322bb5b82328469fcd6a02d65e457268e.php deleted file mode 100644 index ec53e5d..0000000 --- a/data/cache/PHPStan/45/93/4593abb322bb5b82328469fcd6a02d65e457268e.php +++ /dev/null @@ -1,7 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:100:"A class for working with PHP tokens, which is an alternative to -the {@see token_get_all()} function.";}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@since";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:3:"8.0";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/45/b1/45b12de1771107cc9ca76b4c7d24c932c2736042.php b/data/cache/PHPStan/45/b1/45b12de1771107cc9ca76b4c7d24c932c2736042.php deleted file mode 100644 index 5acd4be..0000000 --- a/data/cache/PHPStan/45/b1/45b12de1771107cc9ca76b4c7d24c932c2736042.php +++ /dev/null @@ -1,8 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Error.php-1603535529', - 'data' => - array ( - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/46/14/46147dd866c209e91dbc46d4e561032066b4a0d5.php b/data/cache/PHPStan/46/14/46147dd866c209e91dbc46d4e561032066b4a0d5.php deleted file mode 100644 index cb6f53e..0000000 --- a/data/cache/PHPStan/46/14/46147dd866c209e91dbc46d4e561032066b4a0d5.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";N;s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/46/7e/467e02e9be318a9f35c04e46dc4dbffbf8ccb17d.php b/data/cache/PHPStan/46/7e/467e02e9be318a9f35c04e46dc4dbffbf8ccb17d.php deleted file mode 100644 index 710a845..0000000 --- a/data/cache/PHPStan/46/7e/467e02e9be318a9f35c04e46dc4dbffbf8ccb17d.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/46/a5/46a58eeb7f10f67a184179d1466630a60f8aecb6.php b/data/cache/PHPStan/46/a5/46a58eeb7f10f67a184179d1466630a60f8aecb6.php deleted file mode 100644 index 1e18d83..0000000 --- a/data/cache/PHPStan/46/a5/46a58eeb7f10f67a184179d1466630a60f8aecb6.php +++ /dev/null @@ -1,13 +0,0 @@ - '1596634130', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', - 'modifiedTime' => 1596634130, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/47/39/4739238fece5b6278e8e7af6750583bc76434652.php b/data/cache/PHPStan/47/39/4739238fece5b6278e8e7af6750583bc76434652.php deleted file mode 100644 index 6b63c99..0000000 --- a/data/cache/PHPStan/47/39/4739238fece5b6278e8e7af6750583bc76434652.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/47/c3/47c3560819bea06d90a35212f02de53c8f2bdae0.php b/data/cache/PHPStan/47/c3/47c3560819bea06d90a35212f02de53c8f2bdae0.php deleted file mode 100644 index 6c6b061..0000000 --- a/data/cache/PHPStan/47/c3/47c3560819bea06d90a35212f02de53c8f2bdae0.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$map";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/47/ef/47ef13d6e0c3b5230b07e99478a35bf90d96fdb3.php b/data/cache/PHPStan/47/ef/47ef13d6e0c3b5230b07e99478a35bf90d96fdb3.php deleted file mode 100644 index 1b31277..0000000 --- a/data/cache/PHPStan/47/ef/47ef13d6e0c3b5230b07e99478a35bf90d96fdb3.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:41:"Interface to create an external Iterator.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:53:"https://php.net/manual/en/class.iteratoraggregate.php";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/49/e4/49e44b3598547d4127fc54031158e98a8ae4f0a7.php b/data/cache/PHPStan/49/e4/49e44b3598547d4127fc54031158e98a8ae4f0a7.php deleted file mode 100644 index 11444f9..0000000 --- a/data/cache/PHPStan/49/e4/49e44b3598547d4127fc54031158e98a8ae4f0a7.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"iterable";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"Deque";}s:12:"genericTypes";a:1:{i:0;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/4a/7d/4a7d88391f44783895cc8b2741453cefda6df773.php b/data/cache/PHPStan/4a/7d/4a7d88391f44783895cc8b2741453cefda6df773.php deleted file mode 100644 index 64d2556..0000000 --- a/data/cache/PHPStan/4a/7d/4a7d88391f44783895cc8b2741453cefda6df773.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603538914', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Result.php', - 'modifiedTime' => 1603538914, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/4c/53/4c53c8b2172a850d44a9a01321703b1a5f27ec7f.php b/data/cache/PHPStan/4c/53/4c53c8b2172a850d44a9a01321703b1a5f27ec7f.php deleted file mode 100644 index 6f29bc1..0000000 --- a/data/cache/PHPStan/4c/53/4c53c8b2172a850d44a9a01321703b1a5f27ec7f.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:19:"\\UnderflowException";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/4c/7b/4c7b0341d7238064b7f8305fc1f461812e25e167.php b/data/cache/PHPStan/4c/7b/4c7b0341d7238064b7f8305fc1f461812e25e167.php deleted file mode 100644 index 9cb76ec..0000000 --- a/data/cache/PHPStan/4c/7b/4c7b0341d7238064b7f8305fc1f461812e25e167.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:1;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/4e/48/4e4869047918fb5c9b4c7f4915cf28ff0fe10ac8.php b/data/cache/PHPStan/4e/48/4e4869047918fb5c9b4c7f4915cf28ff0fe10ac8.php deleted file mode 100644 index 3690f96..0000000 --- a/data/cache/PHPStan/4e/48/4e4869047918fb5c9b4c7f4915cf28ff0fe10ac8.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603535529', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Error.php', - 'modifiedTime' => 1603535529, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/52/eb/52ebaeecbbd42ba1d6b9e020ca91142c6bbacbe0.php b/data/cache/PHPStan/52/eb/52ebaeecbbd42ba1d6b9e020ca91142c6bbacbe0.php deleted file mode 100644 index f8c3b2c..0000000 --- a/data/cache/PHPStan/52/eb/52ebaeecbbd42ba1d6b9e020ca91142c6bbacbe0.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603454189', - 'data' => - array ( - 0 => - array ( - 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', - 'modifiedTime' => 1603454189, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/52/f0/52f06084fdfece61c3a5af96a3364bedeb0aba1a.php b/data/cache/PHPStan/52/f0/52f06084fdfece61c3a5af96a3364bedeb0aba1a.php deleted file mode 100644 index 9781eaf..0000000 --- a/data/cache/PHPStan/52/f0/52f06084fdfece61c3a5af96a3364bedeb0aba1a.php +++ /dev/null @@ -1,30 +0,0 @@ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub-1603454189', - 'data' => - array ( - '0d0159bcc474cea05a5b41536bcc08a7' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @implements Traversable> - * @link https://php.net/manual/en/class.pdostatement.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'PDOStatement', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/53/15/53158ee3293381ad62441275b33d993778d46c6b.php b/data/cache/PHPStan/53/15/53158ee3293381ad62441275b33d993778d46c6b.php deleted file mode 100644 index fc45a66..0000000 --- a/data/cache/PHPStan/53/15/53158ee3293381ad62441275b33d993778d46c6b.php +++ /dev/null @@ -1,2616 +0,0 @@ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/../../../../../jetbrains/phpstorm-stubs/Core/Core_c.stub-1603454189', - 'data' => - array ( - 'e1355ee07d4c0287ff25a8be786bc335' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Created by typecasting to object. - * @link https://php.net/manual/en/reserved.classes.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'stdClass', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '26b3642513377bdf1281315acb1374ae' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @link https://wiki.php.net/rfc/iterable - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'iterable', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '2cf824655c7c7a579616ab28e62861bd' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Interface to detect if a class is traversable using foreach. - * Abstract base interface that cannot be implemented alone. - * Instead it must be implemented by either {@see IteratorAggregate} or {@see Iterator}. - * - * @link https://php.net/manual/en/class.traversable.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Traversable', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '2314aa898e143deb4013de67bac837d5' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Interface to create an external Iterator. - * @link https://php.net/manual/en/class.iteratoraggregate.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'IteratorAggregate', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'cbd8dac196301bab22991775e13df444' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Retrieve an external iterator - * @link https://php.net/manual/en/iteratoraggregate.getiterator.php - * @return Traversable An instance of an object implementing Iterator or - * Traversable - * @throws Exception on failure. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'IteratorAggregate', - 'functionName' => 'getIterator', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'b714d9498d33ec66f1913871de7be090' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Interface for external iterators or objects that can be iterated - * themselves internally. - * @link https://php.net/manual/en/class.iterator.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Iterator', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'f868e8596c55baf4b3a87b9e09bc159c' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Return the current element - * @link https://php.net/manual/en/iterator.current.php - * @return mixed Can return any type. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Iterator', - 'functionName' => 'current', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e66f225e6d97f9a7f83168f98b3eaeed' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Move forward to next element - * @link https://php.net/manual/en/iterator.next.php - * @return void Any returned value is ignored. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Iterator', - 'functionName' => 'next', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '9b6099e5e7402a5a8bf5855798c67ccf' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Return the key of the current element - * @link https://php.net/manual/en/iterator.key.php - * @return string|float|int|bool|null scalar on success, or null on failure. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Iterator', - 'functionName' => 'key', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '62ae9b3793ff598231217800a73ac7b4' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Checks if current position is valid - * @link https://php.net/manual/en/iterator.valid.php - * @return bool The return value will be casted to boolean and then evaluated. - * Returns true on success or false on failure. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Iterator', - 'functionName' => 'valid', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'aa0f1586267dd9e67fbc94acc080d8dc' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Rewind the Iterator to the first element - * @link https://php.net/manual/en/iterator.rewind.php - * @return void Any returned value is ignored. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Iterator', - 'functionName' => 'rewind', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '6549048d5c29a4ba5f6855476fe5163e' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Interface to provide accessing objects as arrays. - * @link https://php.net/manual/en/class.arrayaccess.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayAccess', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'fd51a829b13349ad3a1b3a690db62e94' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Whether a offset exists - * @link https://php.net/manual/en/arrayaccess.offsetexists.php - * @param mixed $offset

- * An offset to check for. - *

- * @return bool true on success or false on failure. - *

- *

- * The return value will be casted to boolean if non-boolean was returned. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayAccess', - 'functionName' => 'offsetExists', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '26610c289545ed332c2e4840d5d604a6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Offset to retrieve - * @link https://php.net/manual/en/arrayaccess.offsetget.php - * @param mixed $offset

- * The offset to retrieve. - *

- * @return mixed Can return all value types. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayAccess', - 'functionName' => 'offsetGet', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '32ac5914229f06442beba7eeb990af8f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Offset to set - * @link https://php.net/manual/en/arrayaccess.offsetset.php - * @param mixed $offset

- * The offset to assign the value to. - *

- * @param mixed $value

- * The value to set. - *

- * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayAccess', - 'functionName' => 'offsetSet', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'eeb7d6301b4d749980d50199edc36499' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Offset to unset - * @link https://php.net/manual/en/arrayaccess.offsetunset.php - * @param mixed $offset

- * The offset to unset. - *

- * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayAccess', - 'functionName' => 'offsetUnset', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e03d006c7c4e5e409b6da66041886620' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Interface for customized serializing. - * @link https://php.net/manual/en/class.serializable.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Serializable', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '2e03bf0b2bcc2f9f9b486f600fe353ba' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * String representation of object. - * @link https://php.net/manual/en/serializable.serialize.php - * @return string|null The string representation of the object or null - * @throws Exception Returning other type than string or null - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Serializable', - 'functionName' => 'serialize', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '69a5711d06b300f5b3567162689c595f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Constructs the object. - * @link https://php.net/manual/en/serializable.unserialize.php - * @param string $serialized The string representation of the object. - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Serializable', - 'functionName' => 'unserialize', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'f82e96121e8b55e3df298c5115f21a52' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Throwable is the base interface for any object that can be thrown via a throw statement in PHP 7, - * including Error and Exception. - * @link https://php.net/manual/en/class.throwable.php - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Throwable', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '8650975d68814009a2f08857bdd8e061' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the message - * @link https://php.net/manual/en/throwable.getmessage.php - * @return string - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Throwable', - 'functionName' => 'getMessage', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '19e74186fa410cb2fe389ed371748bec' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the exception code - * @link https://php.net/manual/en/throwable.getcode.php - * @return int

- * Returns the exception code as integer in - * {@see Exception} but possibly as other type in - * {@see Exception} descendants (for example as - * string in {@see PDOException}). - *

- * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Throwable', - 'functionName' => 'getCode', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e927137c568ac832dcdb5e78d7c28248' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the file in which the exception occurred - * @link https://php.net/manual/en/throwable.getfile.php - * @return string Returns the name of the file from which the object was thrown. - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Throwable', - 'functionName' => 'getFile', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'c1e55b33c7ba136788f1d99c19fcca1c' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the line on which the object was instantiated - * @link https://php.net/manual/en/throwable.getline.php - * @return int Returns the line number where the thrown object was instantiated. - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Throwable', - 'functionName' => 'getLine', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'dd844293bedab6a057016032248dae9f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the stack trace - * @link https://php.net/manual/en/throwable.gettrace.php - * @return array

- * Returns the stack trace as an array in the same format as - * {@see debug_backtrace()}. - *

- * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Throwable', - 'functionName' => 'getTrace', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '7c628be0390e022c1127f940502028c8' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the stack trace as a string - * @link https://php.net/manual/en/throwable.gettraceasstring.php - * @return string Returns the stack trace as a string. - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Throwable', - 'functionName' => 'getTraceAsString', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'cd201835f3d654b70461e72dca2c74c3' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns the previous Throwable - * @link https://php.net/manual/en/throwable.getprevious.php - * @return Throwable Returns the previous {@see Throwable} if available, or NULL otherwise. - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Throwable', - 'functionName' => 'getPrevious', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'a271702835a5df68e49d13e4e585feb8' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets a string representation of the thrown object - * @link https://php.net/manual/en/throwable.tostring.php - * @return string

Returns the string representation of the thrown object.

- * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Throwable', - 'functionName' => '__toString', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '40013d3495375df4d89ebf65f21291a6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Exception is the base class for - * all Exceptions. - * @link https://php.net/manual/en/class.exception.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Exception', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '6bbdead98f419b9047d6693c84fbfe77' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** The error message */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Exception', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '1d3e8d44dd5f7d1e4bd39ab7424283aa' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** The error code */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Exception', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'a8382bd75b1ad7b7f21faf05fcbf7536' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** The filename where the error happened */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Exception', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '85639513285bb7b5314b82b4f177d8b0' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** The line where the error happened */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Exception', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'c712ab1f9e3c2fd2b9451b97ab289316' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Clone the exception - * Tries to clone the Exception, which results in Fatal error. - * @link https://php.net/manual/en/exception.clone.php - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Exception', - 'functionName' => '__clone', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'a9068396625c48f82613e645ae7eec43' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Construct the exception. Note: The message is NOT binary safe. - * @link https://php.net/manual/en/exception.construct.php - * @param string $message [optional] The Exception message to throw. - * @param int $code [optional] The Exception code. - * @param Throwable $previous [optional] The previous throwable used for the exception chaining. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Exception', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'fef3b8884a397bb919c5354f91c476c9' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the Exception message - * @link https://php.net/manual/en/exception.getmessage.php - * @return string the Exception message as a string. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Exception', - 'functionName' => 'getMessage', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '8276cf287a938517fa53bfdab7afc6c6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the Exception code - * @link https://php.net/manual/en/exception.getcode.php - * @return mixed|int the exception code as integer in - * Exception but possibly as other type in - * Exception descendants (for example as - * string in PDOException). - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Exception', - 'functionName' => 'getCode', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '632bede3d6365ddb6444fe2c47fcd766' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the file in which the exception occurred - * @link https://php.net/manual/en/exception.getfile.php - * @return string the filename in which the exception was created. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Exception', - 'functionName' => 'getFile', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '1baddc718e9dcdc622477df3fdee42b9' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the line in which the exception occurred - * @link https://php.net/manual/en/exception.getline.php - * @return int the line number where the exception was created. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Exception', - 'functionName' => 'getLine', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'a9d557928c6a3685099a632407f45f52' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the stack trace - * @link https://php.net/manual/en/exception.gettrace.php - * @return array the Exception stack trace as an array. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Exception', - 'functionName' => 'getTrace', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'a9b7bb2d4cb3d47ca5e9df5618dd7a9d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns previous Exception - * @link https://php.net/manual/en/exception.getprevious.php - * @return Exception the previous Exception if available - * or null otherwise. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Exception', - 'functionName' => 'getPrevious', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '35e38c179bb3e625c3e28a0237434455' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the stack trace as a string - * @link https://php.net/manual/en/exception.gettraceasstring.php - * @return string the Exception stack trace as a string. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Exception', - 'functionName' => 'getTraceAsString', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '4d55df39e10e7c39f67a3b594d13a5ec' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * String representation of the exception - * @link https://php.net/manual/en/exception.tostring.php - * @return string the string representation of the exception. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Exception', - 'functionName' => '__toString', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'fd6f75e10b4414074819e46606cda996' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Error is the base class for all internal PHP error exceptions. - * @link https://php.net/manual/en/class.error.php - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Error', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '8e25b672f2b2e1d0657996da976efa2a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** The error message */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Error', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '64a5bb2e79c10812496ee2380228682d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** The error code */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Error', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '48f25bc380105a9926b0ff76b018fcd1' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** The filename where the error happened */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Error', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'f9b5bc7e5552f07848b3d988ad10504b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** The line where the error happened */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Error', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '3bb73f0a44b901c0d0e6e50eddd8fe3b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Construct the error object. - * @link https://php.net/manual/en/error.construct.php - * @param string $message [optional] The Error message to throw. - * @param int $code [optional] The Error code. - * @param Throwable $previous [optional] The previous throwable used for the exception chaining. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Error', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'eb0f6fd8b7db8786305e39f680e8fdfb' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the exception code - * @link https://php.net/manual/en/throwable.getcode.php - * @return int

- * Returns the exception code as integer in - * {@see Exception} but possibly as other type in - * {@see Exception} descendants (for example as - * string in {@see PDOException}). - *

- * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Error', - 'functionName' => 'getCode', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '15662eecb11c3eb837a41c5b4325b2ec' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the file in which the exception occurred - * @link https://php.net/manual/en/throwable.getfile.php - * @return string Returns the name of the file from which the object was thrown. - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Error', - 'functionName' => 'getFile', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '47954cb40957418af1c13755e720d67a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the line on which the object was instantiated - * @link https://php.net/manual/en/throwable.getline.php - * @return int Returns the line number where the thrown object was instantiated. - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Error', - 'functionName' => 'getLine', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'fb1a02576f952424ad8eb80a5e905035' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the stack trace - * @link https://php.net/manual/en/throwable.gettrace.php - * @return array

- * Returns the stack trace as an array in the same format as - * {@see debug_backtrace()}. - *

- * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Error', - 'functionName' => 'getTrace', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '71cb3a4b92fbb15cfc4d7008106224c6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the stack trace as a string - * @link https://php.net/manual/en/throwable.gettraceasstring.php - * @return string Returns the stack trace as a string. - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Error', - 'functionName' => 'getTraceAsString', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '77a282ec02ce7b79a5017c658038dd4d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns the previous Throwable - * @link https://php.net/manual/en/throwable.getprevious.php - * @return Throwable Returns the previous {@see Throwable} if available, or NULL otherwise. - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Error', - 'functionName' => 'getPrevious', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'cc144c81076d8e0bf02cf1fc9563786b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets a string representation of the thrown object - * @link https://php.net/manual/en/throwable.tostring.php - * @return string

Returns the string representation of the thrown object.

- * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Error', - 'functionName' => '__toString', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'ed9d78871fa7cf7acdf7e1292c9e93b0' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Clone the error - * Error can not be clone, so this method results in fatal error. - * @return void - * @link https://php.net/manual/en/error.clone.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Error', - 'functionName' => '__clone', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'a5ffc83112d5c2987b48f589c31e7be1' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * There are three scenarios where a TypeError may be thrown. - * The first is where the argument type being passed to a function does not match its corresponding declared - * parameter type. The second is where a value being returned from a function does not match the declared function return type. The third is where an - * invalid number of arguments are passed to a built-in PHP function (strict mode only). - * @link https://php.net/manual/en/class.typeerror.php - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'TypeError', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '1c3a357b2b000e9a307e644bd223d295' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * ParseError is thrown when an error occurs while parsing PHP code, such as when {@see eval()} is called. - * @link https://php.net/manual/en/class.parseerror.php - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ParseError', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'ff904009db3b785b6a05ec0a7b4b4f18' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * ArgumentCountError is thrown when too few arguments are passed to a user - * defined routine. - * - * @since 7.1 - * @see https://php.net/migration71.incompatible#migration71.incompatible.too-few-arguments-exception - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArgumentCountError', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'f87ee2938d12aa6c02f9af135d94999a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * ArithmeticError is thrown when an error occurs while performing mathematical operations. - * In PHP 7.0, these errors include attempting to perform a bitshift by a negative amount, - * and any call to {@see intdiv()} that would result in a value outside the possible bounds of an integer. - * @link https://php.net/manual/en/class.arithmeticerror.php - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArithmeticError', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '02c5e572e0eb3001f6f478941c47bfbd' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Class CompileError - * @link https://secure.php.net/manual/en/class.compileerror.php - * @since 7.3 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'CompileError', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '13e4c972bc460013b3ef42128e65d1e4' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * DivisionByZeroError is thrown when an attempt is made to divide a number by zero. - * @link https://php.net/manual/en/class.divisionbyzeroerror.php - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DivisionByZeroError', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '6f7c7935f0571052420b2da00cecd464' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @since 8.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'UnhandledMatchError', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '655ba08f55f4d3d6f2dacb9ae0e9da68' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * An Error Exception. - * @link https://php.net/manual/en/class.errorexception.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ErrorException', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '8bae00f043a4a85263b6f2bd80666992' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Constructs the exception - * @link https://php.net/manual/en/errorexception.construct.php - * @param string $message [optional] The Exception message to throw. - * @param int $code [optional] The Exception code. - * @param int $severity [optional] The severity level of the exception. - * @param string $filename [optional] The filename where the exception is thrown. - * @param int $lineno [optional] The line number where the exception is thrown. - * @param Exception $previous [optional] The previous exception used for the exception chaining. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ErrorException', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'ad5d715134c19a2477c152e4dc758a5a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the exception severity - * @link https://php.net/manual/en/errorexception.getseverity.php - * @return int the severity level of the exception. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ErrorException', - 'functionName' => 'getSeverity', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'f7f3190563dda1769c1d206084b3af43' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Class used to represent anonymous functions. - *

Anonymous functions, implemented in PHP 5.3, yield objects of this type. - * This fact used to be considered an implementation detail, but it can now be relied upon. - * Starting with PHP 5.4, this class has methods that allow further control of the anonymous function after it has been created. - *

Besides the methods listed here, this class also has an __invoke method. - * This is for consistency with other classes that implement calling magic, as this method is not used for calling the function. - * @link https://secure.php.net/manual/en/class.closure.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Closure', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '8d3de81f46a6ee2982e95fa1ee46185e' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * This method exists only to disallow instantiation of the Closure class. - * Objects of this class are created in the fashion described on the anonymous functions page. - * @link https://secure.php.net/manual/en/closure.construct.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Closure', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'f367a012007c7a9814e33b0bf0e3b99a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * This is for consistency with other classes that implement calling magic, - * as this method is not used for calling the function. - * @param mixed ...$_ [optional] - * @return mixed - * @link https://secure.php.net/manual/en/class.closure.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Closure', - 'functionName' => '__invoke', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '5e1f53dfce06ecfeb6e7dd4ce6a9823b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Duplicates the closure with a new bound object and class scope - * @link https://secure.php.net/manual/en/closure.bindto.php - * @param object|null $newthis The object to which the given anonymous function should be bound, or NULL for the closure to be unbound. - * @param mixed $newscope The class scope to which associate the closure is to be associated, or \'static\' to keep the current one. - * If an object is given, the type of the object will be used instead. - * This determines the visibility of protected and private methods of the bound object. - * @return Closure|false Returns the newly created Closure object or FALSE on failure - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Closure', - 'functionName' => 'bindTo', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'a7c82baf4bed4477d09d42229393b751' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * This method is a static version of Closure::bindTo(). - * See the documentation of that method for more information. - * @link https://secure.php.net/manual/en/closure.bind.php - * @param Closure $closure The anonymous functions to bind. - * @param object|null $newthis The object to which the given anonymous function should be bound, or NULL for the closure to be unbound. - * @param mixed $newscope The class scope to which associate the closure is to be associated, or \'static\' to keep the current one. - * If an object is given, the type of the object will be used instead. - * This determines the visibility of protected and private methods of the bound object. - * @return Closure|false Returns the newly created Closure object or FALSE on failure - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Closure', - 'functionName' => 'bind', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '4d74944742bec594e04c2c8ef50ca1a9' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Temporarily binds the closure to newthis, and calls it with any given parameters. - * @link https://php.net/manual/en/closure.call.php - * @param object $newThis The object to bind the closure to for the duration of the call. - * @param mixed $parameters [optional] Zero or more parameters, which will be given as parameters to the closure. - * @return mixed - * @since 7.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Closure', - 'functionName' => 'call', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '595ceb1226178b4a6f277a5bf4ed2257' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param callable $callable - * @return Closure - * @since 7.1 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Closure', - 'functionName' => 'fromCallable', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '04bc6ab9aaa9fe2d814f778f8ca17fb1' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Classes implementing Countable can be used with the - * count function. - * @link https://php.net/manual/en/class.countable.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Countable', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '61cbe504f45cfac0aa4999ec81231da0' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Count elements of an object - * @link https://php.net/manual/en/countable.count.php - * @return int The custom count as an integer. - *

- *

- * The return value is cast to an integer. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Countable', - 'functionName' => 'count', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '3e4c01423e8c8c3b611227fcfbc328f9' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Weak references allow the programmer to retain a reference to an - * object which does not prevent the object from being destroyed. - * They are useful for implementing cache like structures. - * @link https://www.php.net/manual/en/class.weakreference.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'WeakReference', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '4485b9ae31f3980ef14ceac410c997f9' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * This method exists only to disallow instantiation of the WeakReference - * class. Weak references are to be instantiated with the factory method - * WeakReference::create(). - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'WeakReference', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'd3e7aaff9383793f71cad314b9dc97c0' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Create a new weak reference. - * @link https://www.php.net/manual/en/weakreference.create.php - * @param object $referent The object to be weakly referenced. - * @return WeakReference the freshly instantiated object. - * @since 7.4 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'WeakReference', - 'functionName' => 'create', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'b2c0c51a22ac57f69ee3e4803c4cd71b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets a weakly referenced object. If the object has already been - * destroyed, NULL is returned. - * @link https://www.php.net/manual/en/weakreference.get.php - * @return object|null - * @since 7.4 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'WeakReference', - 'functionName' => 'get', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '0551bef56a783cc6726874e7023c6710' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Weak maps allow creating a map from objects to arbitrary values - * (similar to SplObjectStorage) without preventing the objects that are used - * as keys from being garbage collected. If an object key is garbage collected, - * it will simply be removed from the map. - * - * @since 8.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'WeakMap', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '53acb5aab8cb21f1a22e77c572195589' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns {@see true} if the value for the object is contained in - * the {@see WeakMap} and {@see false} instead. - * - * @param object $object Any object - * @return bool - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'WeakMap', - 'functionName' => 'offsetExists', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '87e698405e87fb470bea4eef8b006e6e' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns the existsing value by an object. - * - * @param object $object Any object - * @return mixed Value associated with the key object - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'WeakMap', - 'functionName' => 'offsetGet', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'acb173cdab2220621792b25daa234abb' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Sets a new value for an object. - * - * @param object $object Any object - * @param mixed $value Any value - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'WeakMap', - 'functionName' => 'offsetSet', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '3d99fe6cd6223f02dc73207d7622478c' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Force removes an object value from the {@see WeakMap} instance. - * - * @param object $object Any object - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'WeakMap', - 'functionName' => 'offsetUnset', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'b8784eaf2949294f3c29f53c191ea186' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns an iterator in the "[object => mixed]" format. - * - * @return Traversable - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'WeakMap', - 'functionName' => 'getIterator', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'a661c0c77f7a6e42bab1e26f6f4ea97d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns the number of items in the {@see WeakMap} instance. - * - * @return int - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'WeakMap', - 'functionName' => 'count', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'cc120d1a6c33bccabdeae787150d6cb5' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Stringable interface marks classes as available for serialization - * in a string. - * - * @since 8.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Stringable', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'c76205da0f812022d665bd6d929e2f68' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Magic method {@see https://www.php.net/manual/en/language.oop5.magic.php} - * called during serialization to string. - * - * @return string Returns string representation of the object that - * implements this interface (and/or "__toString" magic method). - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Stringable', - 'functionName' => '__toString', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'd12151b9f0929bd11d252546928aa3a8' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @since 8.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Attribute', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e9865bcb85f455bc659795f9738168b6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Marks that attribute declaration is allowed only in classes. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Attribute', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'f80f43b40e3112925e3abdeb1abb8c22' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Marks that attribute declaration is allowed only in functions. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Attribute', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '801d84b3861239167f896b11461a0dbf' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Marks that attribute declaration is allowed only in class methods. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Attribute', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '6e7ec30eaac6913e0f3c643d0c8e5a98' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Marks that attribute declaration is allowed only in class properties. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Attribute', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '4e1888aabe28435ac4dc09525f842358' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Marks that attribute declaration is allowed only in class constants. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Attribute', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '58b61ce0901d11173449437a50e9a527' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Marks that attribute declaration is allowed only in function or method parameters. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Attribute', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '803f4816e07ef62beddd21a73ef80b5e' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Marks that attribute declaration is allowed anywhere. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Attribute', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '7f48c6a47beb2a48781d59ad2ae99514' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Notes that an attribute declaration in the same place is - * allowed multiple times. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Attribute', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '521dc45a6fbca7df3f33a54091e1fe0a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param int $flags A value in the form of a bitmask indicating the places - * where attributes can be defined. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Attribute', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '66b58a2a44f9fd5939626f783754b7b9' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * A class for working with PHP tokens, which is an alternative to - * the {@see token_get_all()} function. - * - * @since 8.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'PhpToken', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '4f15a88ef522a356bbbff6393090cc9f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * One of the T_* constants, or an integer < 256 representing a - * single-char token. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'PhpToken', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'f124fe0161540c90e5fc2d69a16bd3b9' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * The textual content of the token. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'PhpToken', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'fbce283111889c7eb92370086919b59b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * The starting line number (1-based) of the token. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'PhpToken', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '4f331654fa7b6b59583bf7625d76fdd3' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * The starting position (0-based) in the tokenized string. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'PhpToken', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'a201e8796ae1e3a508059e9a104cfd48' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Same as {@see token_get_all()}, but returning array of {@see PhpToken} - * or an instance of a child class. - * - * @param string $code An a PHP source code - * @param int $flags - * @return static[] - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'PhpToken', - 'functionName' => 'getAll', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '068c6b47b3bbc0ed2ab5e0efdb6d4dcb' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param int $id An integer identifier - * @param string $text Textual content - * @param int $line Strating line - * @param int $pos Straring position (line offset) - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'PhpToken', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '3299bd81ac32ddb144a409329bda52c5' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Get the name of the token. - * - * @return string|null - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'PhpToken', - 'functionName' => 'getTokenName', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'd004b3eb0e3bfd792ff0d046063125c8' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Whether the token has the given ID, the given text, or has an ID/text - * part of the given array. - * - * @param int|string|array $kind - * @return bool - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'PhpToken', - 'functionName' => 'is', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '92f974b8ac0515ff55204f6013559b34' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Whether this token would be ignored by the PHP parser. - * - * @return bool - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'PhpToken', - 'functionName' => 'isIgnorable', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '7cc1088ebfa12c15bb947d6ac08d01c1' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * {@inheritDoc} - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'PhpToken', - 'functionName' => '__toString', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '02156a886a811b73f40df779e5f52d2b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @since 8.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'InternalIterator', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/53/a5/53a55303eb4383b4972327850baa0ef95f5535d1.php b/data/cache/PHPStan/53/a5/53a55303eb4383b4972327850baa0ef95f5535d1.php deleted file mode 100644 index e5c72f8..0000000 --- a/data/cache/PHPStan/53/a5/53a55303eb4383b4972327850baa0ef95f5535d1.php +++ /dev/null @@ -1,6 +0,0 @@ - '1603537726-v2', - 'data' => false, -)); \ No newline at end of file diff --git a/data/cache/PHPStan/54/88/5488ee9cc55e2b648aaa0e960674f308ff739021.php b/data/cache/PHPStan/54/88/5488ee9cc55e2b648aaa0e960674f308ff739021.php deleted file mode 100644 index 888ab76..0000000 --- a/data/cache/PHPStan/54/88/5488ee9cc55e2b648aaa0e960674f308ff739021.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/54/8a/548ac8f366324dd4516472648d0feeac252da359.php b/data/cache/PHPStan/54/8a/548ac8f366324dd4516472648d0feeac252da359.php deleted file mode 100644 index ed5739e..0000000 --- a/data/cache/PHPStan/54/8a/548ac8f366324dd4516472648d0feeac252da359.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$element";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/55/42/5542470e033ff705c8b1d4aa8421fb95aa11b941.php b/data/cache/PHPStan/55/42/5542470e033ff705c8b1d4aa8421fb95aa11b941.php deleted file mode 100644 index 64a8ae2..0000000 --- a/data/cache/PHPStan/55/42/5542470e033ff705c8b1d4aa8421fb95aa11b941.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\NullableTypeNode":1:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/56/bd/56bd91565acae82ef9da478282d206afaecfc78e.php b/data/cache/PHPStan/56/bd/56bd91565acae82ef9da478282d206afaecfc78e.php deleted file mode 100644 index c7567e7..0000000 --- a/data/cache/PHPStan/56/bd/56bd91565acae82ef9da478282d206afaecfc78e.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603543737', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php', - 'modifiedTime' => 1603543737, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/57/63/57636871a21ea8552b7fc5a2b6dfb83c01abd4ee.php b/data/cache/PHPStan/57/63/57636871a21ea8552b7fc5a2b6dfb83c01abd4ee.php deleted file mode 100644 index 2f2daf3..0000000 --- a/data/cache/PHPStan/57/63/57636871a21ea8552b7fc5a2b6dfb83c01abd4ee.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603535699', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/TypeInterface.php', - 'modifiedTime' => 1603535699, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/57/d5/57d5b6375d303cbbee2191f82481a5024c35e8c1.php b/data/cache/PHPStan/57/d5/57d5b6375d303cbbee2191f82481a5024c35e8c1.php deleted file mode 100644 index acfd8e2..0000000 --- a/data/cache/PHPStan/57/d5/57d5b6375d303cbbee2191f82481a5024c35e8c1.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}s:10:"isVariadic";b:1;s:13:"parameterName";s:5:"$args";s:11:"description";s:0:"";}}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/58/50/58504eb552d53690174ac1c244e70def1c4a519c.php b/data/cache/PHPStan/58/50/58504eb552d53690174ac1c244e70def1c4a519c.php deleted file mode 100644 index af50fe7..0000000 --- a/data/cache/PHPStan/58/50/58504eb552d53690174ac1c244e70def1c4a519c.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$key";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/59/d0/59d08327722c115693abc214b37f6c297bc06973.php b/data/cache/PHPStan/59/d0/59d08327722c115693abc214b37f6c297bc06973.php deleted file mode 100644 index 2f57efd..0000000 --- a/data/cache/PHPStan/59/d0/59d08327722c115693abc214b37f6c297bc06973.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:16:"SeekableIterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"ArrayAccess";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/5a/7f/5a7fe2c394249eac081113239bda2b234b4933d5.php b/data/cache/PHPStan/5a/7f/5a7fe2c394249eac081113239bda2b234b4933d5.php deleted file mode 100644 index 21c9ad3..0000000 --- a/data/cache/PHPStan/5a/7f/5a7fe2c394249eac081113239bda2b234b4933d5.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:5:"$name";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"DOMNodeList";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"DOMElement";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/5a/9f/5a9fbd95fa73e1dad9d302fd2a99bb498a848813.php b/data/cache/PHPStan/5a/9f/5a9fbd95fa73e1dad9d302fd2a99bb498a848813.php deleted file mode 100644 index 2bf650f..0000000 --- a/data/cache/PHPStan/5a/9f/5a9fbd95fa73e1dad9d302fd2a99bb498a848813.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$index";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TNode";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/5b/cd/5bcd11cdaf0d586304d4fb9408b6c852a7774323.php b/data/cache/PHPStan/5b/cd/5bcd11cdaf0d586304d4fb9408b6c852a7774323.php deleted file mode 100644 index 9623551..0000000 --- a/data/cache/PHPStan/5b/cd/5bcd11cdaf0d586304d4fb9408b6c852a7774323.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"DOMDocument";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/5c/9a/5c9a35bd18677c1cd33d0775b986386e0a71a485.php b/data/cache/PHPStan/5c/9a/5c9a35bd18677c1cd33d0775b986386e0a71a485.php deleted file mode 100644 index 961e639..0000000 --- a/data/cache/PHPStan/5c/9a/5c9a35bd18677c1cd33d0775b986386e0a71a485.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"Pair";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:18:"UnderflowException";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/5d/4d/5d4db524da18419d33dda566d697c95eb69cd5f4.php b/data/cache/PHPStan/5d/4d/5d4db524da18419d33dda566d697c95eb69cd5f4.php deleted file mode 100644 index 13e7b85..0000000 --- a/data/cache/PHPStan/5d/4d/5d4db524da18419d33dda566d697c95eb69cd5f4.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$argument";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/5e/2b/5e2bba4a3aac760f30e94bb9266bacd81731ad38.php b/data/cache/PHPStan/5e/2b/5e2bba4a3aac760f30e94bb9266bacd81731ad38.php deleted file mode 100644 index e057804..0000000 --- a/data/cache/PHPStan/5e/2b/5e2bba4a3aac760f30e94bb9266bacd81731ad38.php +++ /dev/null @@ -1,6 +0,0 @@ - '1603538914-v2', - 'data' => false, -)); \ No newline at end of file diff --git a/data/cache/PHPStan/5f/00/5f0010dbdc436ad8538cc17b11abfc09c73d8527.php b/data/cache/PHPStan/5f/00/5f0010dbdc436ad8538cc17b11abfc09c73d8527.php deleted file mode 100644 index bb4af9e..0000000 --- a/data/cache/PHPStan/5f/00/5f0010dbdc436ad8538cc17b11abfc09c73d8527.php +++ /dev/null @@ -1,30 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub-1596634130', - 'data' => - array ( - '26f3494a674313b7e9cea7a6fefab84f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TMockedClass - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'PHPUnit\\Framework\\MockObject\\Builder', - 'uses' => - array ( - 'stub' => 'PHPUnit\\Framework\\MockObject\\Stub', - ), - 'className' => 'PHPUnit\\Framework\\MockObject\\Builder\\InvocationMocker', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/60/15/601537931e86fa1e2ea57ede55e2c46bc5904a68.php b/data/cache/PHPStan/60/15/601537931e86fa1e2ea57ede55e2c46bc5904a68.php deleted file mode 100644 index 6ad1230..0000000 --- a/data/cache/PHPStan/60/15/601537931e86fa1e2ea57ede55e2c46bc5904a68.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/60/f8/60f89acb3595aded60526f7c1f6e46ec6b0cbea1.php b/data/cache/PHPStan/60/f8/60f89acb3595aded60526f7c1f6e46ec6b0cbea1.php deleted file mode 100644 index e057804..0000000 --- a/data/cache/PHPStan/60/f8/60f89acb3595aded60526f7c1f6e46ec6b0cbea1.php +++ /dev/null @@ -1,6 +0,0 @@ - '1603538914-v2', - 'data' => false, -)); \ No newline at end of file diff --git a/data/cache/PHPStan/61/4f/614f0b76ae82233de7d2cb609788ad8dfddbd785.php b/data/cache/PHPStan/61/4f/614f0b76ae82233de7d2cb609788ad8dfddbd785.php deleted file mode 100644 index e5b0e61..0000000 --- a/data/cache/PHPStan/61/4f/614f0b76ae82233de7d2cb609788ad8dfddbd785.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/61/8c/618cfc246e0d2c772fc507c7b1d7207008e09aac.php b/data/cache/PHPStan/61/8c/618cfc246e0d2c772fc507c7b1d7207008e09aac.php deleted file mode 100644 index f006657..0000000 --- a/data/cache/PHPStan/61/8c/618cfc246e0d2c772fc507c7b1d7207008e09aac.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:13:"$cmp_function";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/61/bf/61bfccb2ac6c5e9a63fa5dc89d03813a7f231d0a.php b/data/cache/PHPStan/61/bf/61bfccb2ac6c5e9a63fa5dc89d03813a7f231d0a.php deleted file mode 100644 index 72750a3..0000000 --- a/data/cache/PHPStan/61/bf/61bfccb2ac6c5e9a63fa5dc89d03813a7f231d0a.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603543737', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php', - 'modifiedTime' => 1603543737, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/61/ce/61ce88e1823b7729279fd11260e89552c1d1631a.php b/data/cache/PHPStan/61/ce/61ce88e1823b7729279fd11260e89552c1d1631a.php deleted file mode 100644 index a025ab4..0000000 --- a/data/cache/PHPStan/61/ce/61ce88e1823b7729279fd11260e89552c1d1631a.php +++ /dev/null @@ -1,108 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php-1603543737', - 'data' => - array ( - 'b4f862cb5714f46401dad2d8a63aef7f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Check', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Check\\NumericRangeCheck', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '933f12aaed67918d13bc43cfa4b4f494' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @var TypeInterface - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Check', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Check\\NumericRangeCheck', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '52e7ada6e8b3d11cd05168f82c172439' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @var int - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Check', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Check\\NumericRangeCheck', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '31340bb32256be2671670aff3ed382c9' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Check', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Check\\NumericRangeCheck', - 'functionName' => 'check', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/61/ea/61ea51c88531a34a34dd40c07f58616739e61e93.php b/data/cache/PHPStan/61/ea/61ea51c88531a34a34dd40c07f58616739e61e93.php deleted file mode 100644 index 9d90a8a..0000000 --- a/data/cache/PHPStan/61/ea/61ea51c88531a34a34dd40c07f58616739e61e93.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:5:"$glue";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/63/c1/63c1fd09925ae5da108652ffc9b2571cbefa3b7f.php b/data/cache/PHPStan/63/c1/63c1fd09925ae5da108652ffc9b2571cbefa3b7f.php deleted file mode 100644 index 1ed9a64..0000000 --- a/data/cache/PHPStan/63/c1/63c1fd09925ae5da108652ffc9b2571cbefa3b7f.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/63/e3/63e38b95d4f4c96348ba5469e1d1f16f2d322105.php b/data/cache/PHPStan/63/e3/63e38b95d4f4c96348ba5469e1d1f16f2d322105.php deleted file mode 100644 index d6416fe..0000000 --- a/data/cache/PHPStan/63/e3/63e38b95d4f4c96348ba5469e1d1f16f2d322105.php +++ /dev/null @@ -1,6 +0,0 @@ - '1603535699-v2', - 'data' => false, -)); \ No newline at end of file diff --git a/data/cache/PHPStan/65/21/652185cb8f6995eca3329243ec3074789d6d781f.php b/data/cache/PHPStan/65/21/652185cb8f6995eca3329243ec3074789d6d781f.php deleted file mode 100644 index 6b5976c..0000000 --- a/data/cache/PHPStan/65/21/652185cb8f6995eca3329243ec3074789d6d781f.php +++ /dev/null @@ -1,30 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Checker.php-1603543737', - 'data' => - array ( - '5b3d5883bba5c78407b3384ca6d6b504' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $element - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck', - 'uses' => - array ( - 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Checker', - 'functionName' => 'fulfills', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/65/36/6536b34313b827e4328c7c69a9c6bd4b47550424.php b/data/cache/PHPStan/65/36/6536b34313b827e4328c7c69a9c6bd4b47550424.php deleted file mode 100644 index c35a895..0000000 --- a/data/cache/PHPStan/65/36/6536b34313b827e4328c7c69a9c6bd4b47550424.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Sequence";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/65/3c/653ca551e84c3340002433aaa719246256f977ee.php b/data/cache/PHPStan/65/3c/653ca551e84c3340002433aaa719246256f977ee.php deleted file mode 100644 index 0a2a490..0000000 --- a/data/cache/PHPStan/65/3c/653ca551e84c3340002433aaa719246256f977ee.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/65/3f/653f161ef2cff05433fe0fa66434804729cbee5e.php b/data/cache/PHPStan/65/3f/653f161ef2cff05433fe0fa66434804729cbee5e.php deleted file mode 100644 index bb98ad1..0000000 --- a/data/cache/PHPStan/65/3f/653f161ef2cff05433fe0fa66434804729cbee5e.php +++ /dev/null @@ -1,32 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php-1603543737', - 'data' => - array ( - 'c373e03e3c9b6e1bbf5fc38d18b5d06d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\BoolType', - 'functionName' => 'check', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/66/3d/663d3a5f39b3b808eb21f3ce746a28d3c747b349.php b/data/cache/PHPStan/66/3d/663d3a5f39b3b808eb21f3ce746a28d3c747b349.php deleted file mode 100644 index bb2d3d1..0000000 --- a/data/cache/PHPStan/66/3d/663d3a5f39b3b808eb21f3ce746a28d3c747b349.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:11:"$comparator";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/67/29/672972b24f56972fa36c68437f8d3d171bf0e46a.php b/data/cache/PHPStan/67/29/672972b24f56972fa36c68437f8d3d171bf0e46a.php deleted file mode 100644 index 30373ee..0000000 --- a/data/cache/PHPStan/67/29/672972b24f56972fa36c68437f8d3d171bf0e46a.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/68/33/68333087a45d8a173b7f49b089294acef0dfc197.php b/data/cache/PHPStan/68/33/68333087a45d8a173b7f49b089294acef0dfc197.php deleted file mode 100644 index 7a501b8..0000000 --- a/data/cache/PHPStan/68/33/68333087a45d8a173b7f49b089294acef0dfc197.php +++ /dev/null @@ -1,32 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php-1603543737', - 'data' => - array ( - '7cb5051b9a1700a8f3c94e5b5869bb7b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\NumericType', - 'functionName' => 'check', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/68/d4/68d43aad9174c1cdff50ac48d1bd2de591de1f9d.php b/data/cache/PHPStan/68/d4/68d43aad9174c1cdff50ac48d1bd2de591de1f9d.php deleted file mode 100644 index 584faa1..0000000 --- a/data/cache/PHPStan/68/d4/68d43aad9174c1cdff50ac48d1bd2de591de1f9d.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:32:"Representation of date and time.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:44:"https://php.net/manual/en/class.datetime.php";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/69/15/6915fba9194d37a1a8345ca001cdb6b28bb6f731.php b/data/cache/PHPStan/69/15/6915fba9194d37a1a8345ca001cdb6b28bb6f731.php deleted file mode 100644 index 9a9893f..0000000 --- a/data/cache/PHPStan/69/15/6915fba9194d37a1a8345ca001cdb6b28bb6f731.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:11:"$comparator";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Sequence";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/6b/42/6b42542855a281cdf1f25377c004a3890283b341.php b/data/cache/PHPStan/6b/42/6b42542855a281cdf1f25377c004a3890283b341.php deleted file mode 100644 index f8623b4..0000000 --- a/data/cache/PHPStan/6b/42/6b42542855a281cdf1f25377c004a3890283b341.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/6b/79/6b79ffe2d2f3ecb120cd95b4e6a001ff49a9b8a9.php b/data/cache/PHPStan/6b/79/6b79ffe2d2f3ecb120cd95b4e6a001ff49a9b8a9.php deleted file mode 100644 index c28768b..0000000 --- a/data/cache/PHPStan/6b/79/6b79ffe2d2f3ecb120cd95b4e6a001ff49a9b8a9.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:1:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"Vector";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/6b/8b/6b8b3cb8c0068a29931b3c822341635d890e6bf6.php b/data/cache/PHPStan/6b/8b/6b8b3cb8c0068a29931b3c822341635d890e6bf6.php deleted file mode 100644 index a3e6f1d..0000000 --- a/data/cache/PHPStan/6b/8b/6b8b3cb8c0068a29931b3c822341635d890e6bf6.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:8:"@extends";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ExtendsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:20:"\\SplDoublyLinkedList";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/6d/c0/6dc03826a59b48f92204bbd8eecfed6a12c5e000.php b/data/cache/PHPStan/6d/c0/6dc03826a59b48f92204bbd8eecfed6a12c5e000.php deleted file mode 100644 index 1191fb8..0000000 --- a/data/cache/PHPStan/6d/c0/6dc03826a59b48f92204bbd8eecfed6a12c5e000.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"iterable";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Sequence";}s:12:"genericTypes";a:1:{i:0;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/71/52/715230f08d0b56c8dc7b5013fd99bc6803157557.php b/data/cache/PHPStan/71/52/715230f08d0b56c8dc7b5013fd99bc6803157557.php deleted file mode 100644 index 72291a4..0000000 --- a/data/cache/PHPStan/71/52/715230f08d0b56c8dc7b5013fd99bc6803157557.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TCarry";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TCarry";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TCarry";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TCarry";}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$initial";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TCarry";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/72/a1/72a1277046ed068f2da8cc94a7e2dec91b057084.php b/data/cache/PHPStan/72/a1/72a1277046ed068f2da8cc94a7e2dec91b057084.php deleted file mode 100644 index 1cf9d59..0000000 --- a/data/cache/PHPStan/72/a1/72a1277046ed068f2da8cc94a7e2dec91b057084.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/73/20/7320ecbd4ec9fde96a2c2e25b28ed6ec4d0f15bd.php b/data/cache/PHPStan/73/20/7320ecbd4ec9fde96a2c2e25b28ed6ec4d0f15bd.php deleted file mode 100644 index c51ca90..0000000 --- a/data/cache/PHPStan/73/20/7320ecbd4ec9fde96a2c2e25b28ed6ec4d0f15bd.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:13:"$namespaceURI";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:10:"$localName";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"DOMNodeList";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"DOMElement";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/74/c4/74c4755066ea86cd86d7faa0ef0f0d56ae91e46b.php b/data/cache/PHPStan/74/c4/74c4755066ea86cd86d7faa0ef0f0d56ae91e46b.php deleted file mode 100644 index 5d3997f..0000000 --- a/data/cache/PHPStan/74/c4/74c4755066ea86cd86d7faa0ef0f0d56ae91e46b.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"Queue";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/77/1c/771c3d4d386e56fb4486a139d3b0d66b4383f4ca.php b/data/cache/PHPStan/77/1c/771c3d4d386e56fb4486a139d3b0d66b4383f4ca.php deleted file mode 100644 index 5289dbc..0000000 --- a/data/cache/PHPStan/77/1c/771c3d4d386e56fb4486a139d3b0d66b4383f4ca.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TReturn";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/78/3c/783cbb9b71ac0eaf58c95099dc2e81446cb31f94.php b/data/cache/PHPStan/78/3c/783cbb9b71ac0eaf58c95099dc2e81446cb31f94.php deleted file mode 100644 index 810c3b9..0000000 --- a/data/cache/PHPStan/78/3c/783cbb9b71ac0eaf58c95099dc2e81446cb31f94.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:19:"An Error Exception.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:50:"https://php.net/manual/en/class.errorexception.php";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/78/a5/78a5cc4d76d7d8ba8967263de2868a1728aa9ab9.php b/data/cache/PHPStan/78/a5/78a5cc4d76d7d8ba8967263de2868a1728aa9ab9.php deleted file mode 100644 index 2101ec1..0000000 --- a/data/cache/PHPStan/78/a5/78a5cc4d76d7d8ba8967263de2868a1728aa9ab9.php +++ /dev/null @@ -1,8 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:199:"Representation of date interval. A date interval stores either a fixed amount of -time (in years, months, days, hours etc) or a relative time string in the format -that DateTime\'s constructor supports.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:48:"https://php.net/manual/en/class.dateinterval.php";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/78/bc/78bcb06e060c26add0ee5d64b4f63f6b33433a2a.php b/data/cache/PHPStan/78/bc/78bcb06e060c26add0ee5d64b4f63f6b33433a2a.php deleted file mode 100644 index 99f35c2..0000000 --- a/data/cache/PHPStan/78/bc/78bcb06e060c26add0ee5d64b4f63f6b33433a2a.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$offset";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/78/f4/78f4e82417388bd2999bc768958db49a6f516dfc.php b/data/cache/PHPStan/78/f4/78f4e82417388bd2999bc768958db49a6f516dfc.php deleted file mode 100644 index 6fbc6da..0000000 --- a/data/cache/PHPStan/78/f4/78f4e82417388bd2999bc768958db49a6f516dfc.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603543737', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php', - 'modifiedTime' => 1603543737, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/79/1d/791d42dec1afa1e492f155878b516acf6613aa2e.php b/data/cache/PHPStan/79/1d/791d42dec1afa1e492f155878b516acf6613aa2e.php deleted file mode 100644 index 358d83f..0000000 --- a/data/cache/PHPStan/79/1d/791d42dec1afa1e492f155878b516acf6613aa2e.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$element";s:11:"description";s:34:"the element which should be tested";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/7b/46/7b467eca4e1377dc3b4d86c36144246e9cb8b4ee.php b/data/cache/PHPStan/7b/46/7b467eca4e1377dc3b4d86c36144246e9cb8b4ee.php deleted file mode 100644 index 45662d5..0000000 --- a/data/cache/PHPStan/7b/46/7b467eca4e1377dc3b4d86c36144246e9cb8b4ee.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"Traversable";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}}}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"ArrayAccess";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}}}s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Iterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/7c/ca/7cca279b3804f1daf686f6f76d2a25f318524bec.php b/data/cache/PHPStan/7c/ca/7cca279b3804f1daf686f6f76d2a25f318524bec.php deleted file mode 100644 index 91aed3b..0000000 --- a/data/cache/PHPStan/7c/ca/7cca279b3804f1daf686f6f76d2a25f318524bec.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603454189', - 'data' => - array ( - 0 => - array ( - 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', - 'modifiedTime' => 1603454189, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/7d/b9/7db9314965265f5a1122f840669bfbe4f815294d.php b/data/cache/PHPStan/7d/b9/7db9314965265f5a1122f840669bfbe4f815294d.php deleted file mode 100644 index 2a9a801..0000000 --- a/data/cache/PHPStan/7d/b9/7db9314965265f5a1122f840669bfbe4f815294d.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:3:"TIn";s:5:"bound";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"object";}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"TIn";}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$referent";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:13:"WeakReference";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"TIn";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/7e/a8/7ea8eb8185e71136ec60f992d88a19eaf0f9a089.php b/data/cache/PHPStan/7e/a8/7ea8eb8185e71136ec60f992d88a19eaf0f9a089.php deleted file mode 100644 index f00089e..0000000 --- a/data/cache/PHPStan/7e/a8/7ea8eb8185e71136ec60f992d88a19eaf0f9a089.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"Pair";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/7e/d1/7ed1ef5f696332f7218718288784f27e0f286ba5.php b/data/cache/PHPStan/7e/d1/7ed1ef5f696332f7218718288784f27e0f286ba5.php deleted file mode 100644 index e9cb22e..0000000 --- a/data/cache/PHPStan/7e/d1/7ed1ef5f696332f7218718288784f27e0f286ba5.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:8:"@extends";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ExtendsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"Traversable";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/80/0c/800c12194fed67fe6e7c6b298e0d341fa4a87e8c.php b/data/cache/PHPStan/80/0c/800c12194fed67fe6e7c6b298e0d341fa4a87e8c.php deleted file mode 100644 index e567768..0000000 --- a/data/cache/PHPStan/80/0c/800c12194fed67fe6e7c6b298e0d341fa4a87e8c.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603543737', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php', - 'modifiedTime' => 1603543737, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/80/84/80843a377e9989817a1bc3c8edd9a2d0d677b767.php b/data/cache/PHPStan/80/84/80843a377e9989817a1bc3c8edd9a2d0d677b767.php deleted file mode 100644 index fd31741..0000000 --- a/data/cache/PHPStan/80/84/80843a377e9989817a1bc3c8edd9a2d0d677b767.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:5:"TKey2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TKey2";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$map";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:50:"PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TKey2";}}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/80/e6/80e61fa3def7b2ead509ed9d7224a95fc9207bb5.php b/data/cache/PHPStan/80/e6/80e61fa3def7b2ead509ed9d7224a95fc9207bb5.php deleted file mode 100644 index b9e04a0..0000000 --- a/data/cache/PHPStan/80/e6/80e61fa3def7b2ead509ed9d7224a95fc9207bb5.php +++ /dev/null @@ -1,32 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php-1603543737', - 'data' => - array ( - 'd0f86310b68f774d6457dce540a55116' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\RegexType', - 'functionName' => 'check', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/82/12/821215ef26faa0f89dc1c9dd3a0b11fcbf45d238.php b/data/cache/PHPStan/82/12/821215ef26faa0f89dc1c9dd3a0b11fcbf45d238.php deleted file mode 100644 index 3014266..0000000 --- a/data/cache/PHPStan/82/12/821215ef26faa0f89dc1c9dd3a0b11fcbf45d238.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:11:"$comparator";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/82/29/8229ee94d04173906feeb415651642b72c9b0573.php b/data/cache/PHPStan/82/29/8229ee94d04173906feeb415651642b72c9b0573.php deleted file mode 100644 index 603f61f..0000000 --- a/data/cache/PHPStan/82/29/8229ee94d04173906feeb415651642b72c9b0573.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:12:"TMockedClass";s:5:"bound";N;s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/82/64/8264a307066f3229a11c44d841d54483d91aa0d2.php b/data/cache/PHPStan/82/64/8264a307066f3229a11c44d841d54483d91aa0d2.php deleted file mode 100644 index 0a0a2d2..0000000 --- a/data/cache/PHPStan/82/64/8264a307066f3229a11c44d841d54483d91aa0d2.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/83/14/83144ff1660969936adb3b5bf33e82d2c71ca780.php b/data/cache/PHPStan/83/14/83144ff1660969936adb3b5bf33e82d2c71ca780.php deleted file mode 100644 index 94c5300..0000000 --- a/data/cache/PHPStan/83/14/83144ff1660969936adb3b5bf33e82d2c71ca780.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$key";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/84/ea/84ea0abfef2f2455b4c149887f949677e7ac123b.php b/data/cache/PHPStan/84/ea/84ea0abfef2f2455b4c149887f949677e7ac123b.php deleted file mode 100644 index e4980bd..0000000 --- a/data/cache/PHPStan/84/ea/84ea0abfef2f2455b4c149887f949677e7ac123b.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"Traversable";}s:12:"genericTypes";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:2:{i:0;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}}}}}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:48:"https://php.net/manual/en/class.pdostatement.php";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/86/52/8652dfb5dbc61c7bc8fb7f9e45095f503eb949d7.php b/data/cache/PHPStan/86/52/8652dfb5dbc61c7bc8fb7f9e45095f503eb949d7.php deleted file mode 100644 index 80776cd..0000000 --- a/data/cache/PHPStan/86/52/8652dfb5dbc61c7bc8fb7f9e45095f503eb949d7.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:11:"$comparator";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/86/af/86afd1f21dcf3d52c66aa1b3193e2b21694a3060.php b/data/cache/PHPStan/86/af/86afd1f21dcf3d52c66aa1b3193e2b21694a3060.php deleted file mode 100644 index b36af23..0000000 --- a/data/cache/PHPStan/86/af/86afd1f21dcf3d52c66aa1b3193e2b21694a3060.php +++ /dev/null @@ -1,32 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php-1603543737', - 'data' => - array ( - '654ce37e9a64307f154757983c1d483c' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\StringType', - 'functionName' => 'check', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/86/d4/86d46cd235492e48c382a2590b16fdc9d4cb4bd8.php b/data/cache/PHPStan/86/d4/86d46cd235492e48c382a2590b16fdc9d4cb4bd8.php deleted file mode 100644 index 059760e..0000000 --- a/data/cache/PHPStan/86/d4/86d46cd235492e48c382a2590b16fdc9d4cb4bd8.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:13:"TypeInterface";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/87/5a/875a60b1571c4b7cd47aed2781241a0af9767e40.php b/data/cache/PHPStan/87/5a/875a60b1571c4b7cd47aed2781241a0af9767e40.php deleted file mode 100644 index 51757b0..0000000 --- a/data/cache/PHPStan/87/5a/875a60b1571c4b7cd47aed2781241a0af9767e40.php +++ /dev/null @@ -1,8 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:183:"Weak references allow the programmer to retain a reference to an -object which does not prevent the object from being destroyed. -They are useful for implementing cache like structures.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:53:"https://www.php.net/manual/en/class.weakreference.php";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/89/18/8918d8a850184a6941a77f4b453f4cc70b5aca45.php b/data/cache/PHPStan/89/18/8918d8a850184a6941a77f4b453f4cc70b5aca45.php deleted file mode 100644 index b3163ce..0000000 --- a/data/cache/PHPStan/89/18/8918d8a850184a6941a77f4b453f4cc70b5aca45.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603543737', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Checker.php', - 'modifiedTime' => 1603543737, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/89/45/894509e411ee391fc6a619f7699250a9570d1ad6.php b/data/cache/PHPStan/89/45/894509e411ee391fc6a619f7699250a9570d1ad6.php deleted file mode 100644 index 5a08455..0000000 --- a/data/cache/PHPStan/89/45/894509e411ee391fc6a619f7699250a9570d1ad6.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:13:"$cmp_function";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/89/66/8966fb7f2622fb9235757ea1c3d8407fba7cc931.php b/data/cache/PHPStan/89/66/8966fb7f2622fb9235757ea1c3d8407fba7cc931.php deleted file mode 100644 index b8feea1..0000000 --- a/data/cache/PHPStan/89/66/8966fb7f2622fb9235757ea1c3d8407fba7cc931.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Sequence";}s:12:"genericTypes";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"Pair";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/89/a4/89a4e330c772b11033ff19857bd1f7f22e3836bc.php b/data/cache/PHPStan/89/a4/89a4e330c772b11033ff19857bd1f7f22e3836bc.php deleted file mode 100644 index 2b127cf..0000000 --- a/data/cache/PHPStan/89/a4/89a4e330c772b11033ff19857bd1f7f22e3836bc.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:18:"$originalClassName";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:15:"@phpstan-return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:50:"PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"MockObject";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/8a/c5/8ac58cab748b7bb3c1fa6545ab85504dae8f4c17.php b/data/cache/PHPStan/8a/c5/8ac58cab748b7bb3c1fa6545ab85504dae8f4c17.php deleted file mode 100644 index 59da4c7..0000000 --- a/data/cache/PHPStan/8a/c5/8ac58cab748b7bb3c1fa6545ab85504dae8f4c17.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"list";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/8d/94/8d941c3dd1b837f591b2876a7290633465904ee8.php b/data/cache/PHPStan/8d/94/8d941c3dd1b837f591b2876a7290633465904ee8.php deleted file mode 100644 index c88beef..0000000 --- a/data/cache/PHPStan/8d/94/8d941c3dd1b837f591b2876a7290633465904ee8.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:8:"@extends";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ExtendsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"Collection";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/8e/f0/8ef043fdc5174b4062aae4753981223dcdd3b52e.php b/data/cache/PHPStan/8e/f0/8ef043fdc5174b4062aae4753981223dcdd3b52e.php deleted file mode 100644 index 40a6818..0000000 --- a/data/cache/PHPStan/8e/f0/8ef043fdc5174b4062aae4753981223dcdd3b52e.php +++ /dev/null @@ -1,154 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub-1596634130', - 'data' => - array ( - 'db6e674a5d7e29a3b74a0aa7cdf2214a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TMockedClass - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'PHPUnit\\Framework\\MockObject', - 'uses' => - array ( - 'testcase' => 'PHPUnit\\Framework\\TestCase', - ), - 'className' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '72bf206a1c8823e04e5f25f77ec2a167' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @phpstan-param TestCase $testCase - * @phpstan-param class-string $type - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'PHPUnit\\Framework\\MockObject', - 'uses' => - array ( - 'testcase' => 'PHPUnit\\Framework\\TestCase', - ), - 'className' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TMockedClass' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', - 'functionName' => NULL, - )), - 'name' => 'TMockedClass', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'e09c5f4980b9699b608403612f5d5edc' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @phpstan-return MockObject&TMockedClass - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'PHPUnit\\Framework\\MockObject', - 'uses' => - array ( - 'testcase' => 'PHPUnit\\Framework\\TestCase', - ), - 'className' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', - 'functionName' => 'getMock', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TMockedClass' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', - 'functionName' => NULL, - )), - 'name' => 'TMockedClass', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'dd7a30499feb6f5883ad2d4885abcfa8' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @phpstan-return MockObject&TMockedClass - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'PHPUnit\\Framework\\MockObject', - 'uses' => - array ( - 'testcase' => 'PHPUnit\\Framework\\TestCase', - ), - 'className' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', - 'functionName' => 'getMockForAbstractClass', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TMockedClass' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', - 'functionName' => NULL, - )), - 'name' => 'TMockedClass', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/8f/9d/8f9d5209e697ad147161ee1e6e73939bf497560c.php b/data/cache/PHPStan/8f/9d/8f9d5209e697ad147161ee1e6e73939bf497560c.php deleted file mode 100644 index 060b2b7..0000000 --- a/data/cache/PHPStan/8f/9d/8f9d5209e697ad147161ee1e6e73939bf497560c.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:11:"$comparator";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"Vector";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/91/97/9197685b4780c978746ad728f350d52e9efcb736.php b/data/cache/PHPStan/91/97/9197685b4780c978746ad728f350d52e9efcb736.php deleted file mode 100644 index da28425..0000000 --- a/data/cache/PHPStan/91/97/9197685b4780c978746ad728f350d52e9efcb736.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603543737', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php', - 'modifiedTime' => 1603543737, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/91/f4/91f4cc125f6cb838326d89caa338a257f98583e8.php b/data/cache/PHPStan/91/f4/91f4cc125f6cb838326d89caa338a257f98583e8.php deleted file mode 100644 index f086bb2..0000000 --- a/data/cache/PHPStan/91/f4/91f4cc125f6cb838326d89caa338a257f98583e8.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:1:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"Deque";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/92/2c/922c99e7244200793d5e8ea15abf2faf88c1bf6b.php b/data/cache/PHPStan/92/2c/922c99e7244200793d5e8ea15abf2faf88c1bf6b.php deleted file mode 100644 index f2ce428..0000000 --- a/data/cache/PHPStan/92/2c/922c99e7244200793d5e8ea15abf2faf88c1bf6b.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@since";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:3:"5.5";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/92/79/9279a7d328929717a9165ade49d56af51d46abd5.php b/data/cache/PHPStan/92/79/9279a7d328929717a9165ade49d56af51d46abd5.php deleted file mode 100644 index 6378a5e..0000000 --- a/data/cache/PHPStan/92/79/9279a7d328929717a9165ade49d56af51d46abd5.php +++ /dev/null @@ -1,107 +0,0 @@ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub-1603454189', - 'data' => - array ( - '4fc6b465a8606e891b21e0f8d2d3a8b8' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template-covariant T as object - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'WeakReference', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '8d830997935b9be607c4266fbf71b985' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TIn as object - * @param TIn $referent - * @return WeakReference - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'WeakReference', - 'functionName' => 'create', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'T' => - PHPStan\Type\Generic\TemplateObjectWithoutClassType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'WeakReference', - 'functionName' => NULL, - )), - 'name' => 'T', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '74f01060595d9944a7eba55f415ff087' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** @return ?T */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'WeakReference', - 'functionName' => 'get', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'T' => - PHPStan\Type\Generic\TemplateObjectWithoutClassType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'WeakReference', - 'functionName' => NULL, - )), - 'name' => 'T', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/95/93/959319bbf3575c6854b555884b624532b1992891.php b/data/cache/PHPStan/95/93/959319bbf3575c6854b555884b624532b1992891.php deleted file mode 100644 index 1e559b1..0000000 --- a/data/cache/PHPStan/95/93/959319bbf3575c6854b555884b624532b1992891.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:37:"Interface for customized serializing.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:48:"https://php.net/manual/en/class.serializable.php";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/96/86/9686829e0bde3898d90d45a214065ce6dd6d02ad.php b/data/cache/PHPStan/96/86/9686829e0bde3898d90d45a214065ce6dd6d02ad.php deleted file mode 100644 index bc34a4b..0000000 --- a/data/cache/PHPStan/96/86/9686829e0bde3898d90d45a214065ce6dd6d02ad.php +++ /dev/null @@ -1,426 +0,0 @@ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub-1603454189', - 'data' => - array ( - 'a7a094aa6ecdc2b6d85542ab565c5dc4' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** @var DOMDocumentType|null */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMDocument', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '1f85fee5c4595548db45b74f1b25098b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** @var DOMElement|null */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMDocument', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '6a07aa6b18e9f0220ba9c7fc05afdb9c' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** @var null */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMDocument', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'eaa114ef38bc1376b75db1348af11863' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param string $name - * @return DOMNodeList - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMDocument', - 'functionName' => 'getElementsByTagName', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'c121bf786e68612e12b753f8c2eb56c9' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param string $namespaceURI - * @param string $localName - * @return DOMNodeList - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMDocument', - 'functionName' => 'getElementsByTagNameNS', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '6a0b3e8d776625f1a4b6f49cd8d4eef8' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** @var DOMDocument */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMElement', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '53f5dac47807d9e7ebfd83e701a264cc' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param string $name - * @return DOMNodeList - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMElement', - 'functionName' => 'getElementsByTagName', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '7a8b7dda22de6b209b7a62aa2398545f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param string $namespaceURI - * @param string $localName - * @return DOMNodeList - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMElement', - 'functionName' => 'getElementsByTagNameNS', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'a2409a6741d52cb7908e8ac6830be634' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template-covariant TNode as DOMNode - * @implements Traversable - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMNodeList', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'caa1b746d37e237321d64c2e0dda5c5b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param int $index - * @return TNode|null - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMNodeList', - 'functionName' => 'item', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TNode' => - PHPStan\Type\Generic\TemplateObjectType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'DOMNodeList', - 'functionName' => NULL, - )), - 'name' => 'TNode', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'bound' => - PHPStan\Type\ObjectType::__set_state(array( - 'className' => 'DOMNode', - 'subtractedType' => NULL, - 'classReflection' => NULL, - 'genericObjectType' => NULL, - 'superTypes' => - array ( - ), - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'className' => 'DOMNode', - 'subtractedType' => NULL, - 'classReflection' => NULL, - 'genericObjectType' => NULL, - 'superTypes' => - array ( - ), - )), - ), - )), - )), - )), - '04178e8de0c85ed1bc6bfcbf7741a224' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** @var DOMDocument */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMAttr', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '2ff2612f8d10915e253a6b0e25f2dd25' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** @var DOMDocument */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMCharacterData', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'cdd854d580f3ba334e58a821b5344a94' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** @var DOMDocument */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMDocumentType', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '0a8e1b4bd5b876a692ee55d0978b64ad' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** @var DOMDocument */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMEntity', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '0866f967503ac4ddad294d6426914b81' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** @var DOMDocument */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMNotation', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '7a6265b999974d60cc8ec368817b0e3c' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** @var DOMDocument */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMProcessingInstruction', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '9e2d114d0512d3c29f08f8fde5ff8636' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMProcessingInstruction', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'fa179137e6f693b3748b81cc58704868' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @property-read int $length - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMNamedNodeMap', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'd28e6f168bc5f2290f17444d36c8ba45' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** @var string */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DOMText', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/98/bd/98bde3d050ad46a4e4d4623912a61a7e3b994d4a.php b/data/cache/PHPStan/98/bd/98bde3d050ad46a4e4d4623912a61a7e3b994d4a.php deleted file mode 100644 index edfcaa6..0000000 --- a/data/cache/PHPStan/98/bd/98bde3d050ad46a4e4d4623912a61a7e3b994d4a.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$index";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$newval";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/98/c1/98c186280446546a92fbcaccb9ca2da9a22da57b.php b/data/cache/PHPStan/98/c1/98c186280446546a92fbcaccb9ca2da9a22da57b.php deleted file mode 100644 index 37b2618..0000000 --- a/data/cache/PHPStan/98/c1/98c186280446546a92fbcaccb9ca2da9a22da57b.php +++ /dev/null @@ -1,71 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Result.php-1603538914', - 'data' => - array ( - '9776cb297ae6435751e12556b8d53511' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @var array - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck', - 'uses' => - array ( - ), - 'className' => 'Cubicl\\StructureCheck\\Result', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '29f6e969c38e7475165518ef939c5067' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param array $errors - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck', - 'uses' => - array ( - ), - 'className' => 'Cubicl\\StructureCheck\\Result', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '16d9422e0ebede95a127dd5f22104259' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param array $errors - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck', - 'uses' => - array ( - ), - 'className' => 'Cubicl\\StructureCheck\\Result', - 'functionName' => 'invalid', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/98/fb/98fbc138e80195b07a3a3cf33010a201b217d832.php b/data/cache/PHPStan/98/fb/98fbc138e80195b07a3a3cf33010a201b217d832.php deleted file mode 100644 index f09e8f4..0000000 --- a/data/cache/PHPStan/98/fb/98fbc138e80195b07a3a3cf33010a201b217d832.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:18:"UnderflowException";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/9a/a3/9aa3e7a446b29da80fba3b93053440bc895f92b6.php b/data/cache/PHPStan/9a/a3/9aa3e7a446b29da80fba3b93053440bc895f92b6.php deleted file mode 100644 index 55472cf..0000000 --- a/data/cache/PHPStan/9a/a3/9aa3e7a446b29da80fba3b93053440bc895f92b6.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:78:"Returns a list of errors. If no error occurred, it will return an empty array.";}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:14:"ErrorInterface";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/9c/4c/9c4c2cd9153df6a13c3fe1e7ad45ead2f44a25fc.php b/data/cache/PHPStan/9c/4c/9c4c2cd9153df6a13c3fe1e7ad45ead2f44a25fc.php deleted file mode 100644 index 17646c6..0000000 --- a/data/cache/PHPStan/9c/4c/9c4c2cd9153df6a13c3fe1e7ad45ead2f44a25fc.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/9c/e4/9ce44407120181578ba38b9dbbc1e8f346304eab.php b/data/cache/PHPStan/9c/e4/9ce44407120181578ba38b9dbbc1e8f346304eab.php deleted file mode 100644 index f549870..0000000 --- a/data/cache/PHPStan/9c/e4/9ce44407120181578ba38b9dbbc1e8f346304eab.php +++ /dev/null @@ -1,7 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:47:"Exception is the base class for -all Exceptions.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:45:"https://php.net/manual/en/class.exception.php";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/9e/2f/9e2fd8ee64c0ee935739ec05367cd4bd3f065305.php b/data/cache/PHPStan/9e/2f/9e2fd8ee64c0ee935739ec05367cd4bd3f065305.php deleted file mode 100644 index 18b9812..0000000 --- a/data/cache/PHPStan/9e/2f/9e2fd8ee64c0ee935739ec05367cd4bd3f065305.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"iterable";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/9e/4c/9e4c0a9cff4b7efc3f3b05beb7002974c13e9cbc.php b/data/cache/PHPStan/9e/4c/9e4c0a9cff4b7efc3f3b05beb7002974c13e9cbc.php deleted file mode 100644 index 3e24ee3..0000000 --- a/data/cache/PHPStan/9e/4c/9e4c0a9cff4b7efc3f3b05beb7002974c13e9cbc.php +++ /dev/null @@ -1,6 +0,0 @@ - '1603535530-v2', - 'data' => false, -)); \ No newline at end of file diff --git a/data/cache/PHPStan/9f/59/9f59d3203927f3b9004b1d1654c3d933fd8e69c6.php b/data/cache/PHPStan/9f/59/9f59d3203927f3b9004b1d1654c3d933fd8e69c6.php deleted file mode 100644 index d1658d9..0000000 --- a/data/cache/PHPStan/9f/59/9f59d3203927f3b9004b1d1654c3d933fd8e69c6.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$iterator";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:10:"isVariadic";b:0;s:13:"parameterName";s:5:"$mode";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$flags";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/9f/9e/9f9e86be5a38c0eedb84122ac3c4f850402fc526.php b/data/cache/PHPStan/9f/9e/9f9e86be5a38c0eedb84122ac3c4f850402fc526.php deleted file mode 100644 index 17f6dec..0000000 --- a/data/cache/PHPStan/9f/9e/9f9e86be5a38c0eedb84122ac3c4f850402fc526.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"Collection";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/a0/40/a040b03b682c63893633911aaf05d2b3112ab16e.php b/data/cache/PHPStan/a0/40/a040b03b682c63893633911aaf05d2b3112ab16e.php deleted file mode 100644 index d8221b8..0000000 --- a/data/cache/PHPStan/a0/40/a040b03b682c63893633911aaf05d2b3112ab16e.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:13:"ArrayIterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/a1/ed/a1ed5fffcd1dbd596fbde55df8ebda81ac34e4bb.php b/data/cache/PHPStan/a1/ed/a1ed5fffcd1dbd596fbde55df8ebda81ac34e4bb.php deleted file mode 100644 index c36ffa8..0000000 --- a/data/cache/PHPStan/a1/ed/a1ed5fffcd1dbd596fbde55df8ebda81ac34e4bb.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603543737', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php', - 'modifiedTime' => 1603543737, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/a2/1f/a21fa0ef32151fb3cde03802a4a53759e55d87df.php b/data/cache/PHPStan/a2/1f/a21fa0ef32151fb3cde03802a4a53759e55d87df.php deleted file mode 100644 index f28a70a..0000000 --- a/data/cache/PHPStan/a2/1f/a21fa0ef32151fb3cde03802a4a53759e55d87df.php +++ /dev/null @@ -1,7 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:87:"Interface for external iterators or objects that can be iterated -themselves internally.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:44:"https://php.net/manual/en/class.iterator.php";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/a2/98/a2980e646464aff1f9fe3a41ff3fc234d8829fe0.php b/data/cache/PHPStan/a2/98/a2980e646464aff1f9fe3a41ff3fc234d8829fe0.php deleted file mode 100644 index 0e10a01..0000000 --- a/data/cache/PHPStan/a2/98/a2980e646464aff1f9fe3a41ff3fc234d8829fe0.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603538228', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php', - 'modifiedTime' => 1603538228, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/a3/2a/a32a0395c2ded4d78188609959407adb820a5d70.php b/data/cache/PHPStan/a3/2a/a32a0395c2ded4d78188609959407adb820a5d70.php deleted file mode 100644 index 56adbe6..0000000 --- a/data/cache/PHPStan/a3/2a/a32a0395c2ded4d78188609959407adb820a5d70.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:41:"Returns TRUE if the check was successful.";}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/a3/68/a368bd2d8dd0210910e3ae38c7be1d99ddc8c7dd.php b/data/cache/PHPStan/a3/68/a368bd2d8dd0210910e3ae38c7be1d99ddc8c7dd.php deleted file mode 100644 index 74aac69..0000000 --- a/data/cache/PHPStan/a3/68/a368bd2d8dd0210910e3ae38c7be1d99ddc8c7dd.php +++ /dev/null @@ -1,268 +0,0 @@ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub-1603454189', - 'data' => - array ( - '01629e9f3d0c9810f61f458b7d5efb96' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template-covariant T of object - * @property-read class-string $name - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ReflectionClass', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'd963698e66ab97d1ecf675281a5566bc' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @var class-string - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ReflectionClass', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'T' => - PHPStan\Type\Generic\TemplateObjectWithoutClassType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ReflectionClass', - 'functionName' => NULL, - )), - 'name' => 'T', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'cc3c3369421d2b0116608d2a83fe74aa' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param T|class-string $argument - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ReflectionClass', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'T' => - PHPStan\Type\Generic\TemplateObjectWithoutClassType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ReflectionClass', - 'functionName' => NULL, - )), - 'name' => 'T', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '63ab44bcf76f8bc833650eb4498365a2' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return class-string - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ReflectionClass', - 'functionName' => 'getName', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'T' => - PHPStan\Type\Generic\TemplateObjectWithoutClassType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ReflectionClass', - 'functionName' => NULL, - )), - 'name' => 'T', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'ac69e1a6b5bced897974651729abcda5' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed ...$args - * - * @return T - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ReflectionClass', - 'functionName' => 'newInstance', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'T' => - PHPStan\Type\Generic\TemplateObjectWithoutClassType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ReflectionClass', - 'functionName' => NULL, - )), - 'name' => 'T', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '454287e6f3fbf43eb741a6777070bb2f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param array $args - * - * @return T - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ReflectionClass', - 'functionName' => 'newInstanceArgs', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'T' => - PHPStan\Type\Generic\TemplateObjectWithoutClassType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ReflectionClass', - 'functionName' => NULL, - )), - 'name' => 'T', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '7b8fb222a0f53b472ca99a69b63fa03b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return T - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ReflectionClass', - 'functionName' => 'newInstanceWithoutConstructor', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'T' => - PHPStan\Type\Generic\TemplateObjectWithoutClassType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ReflectionClass', - 'functionName' => NULL, - )), - 'name' => 'T', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/a3/a8/a3a884ea935adc56433b6395233888755dc8f0ee.php b/data/cache/PHPStan/a3/a8/a3a884ea935adc56433b6395233888755dc8f0ee.php deleted file mode 100644 index 88d4652..0000000 --- a/data/cache/PHPStan/a3/a8/a3a884ea935adc56433b6395233888755dc8f0ee.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:15:"@phpstan-return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:50:"PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"MockObject";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"TMockedClass";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/a4/7e/a47ea4aacc94d2b76c62131e7352712ee9ec34bc.php b/data/cache/PHPStan/a4/7e/a47ea4aacc94d2b76c62131e7352712ee9ec34bc.php deleted file mode 100644 index ac78c31..0000000 --- a/data/cache/PHPStan/a4/7e/a47ea4aacc94d2b76c62131e7352712ee9ec34bc.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$set";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/a7/70/a770789801c10d90a66ee33c2e8caca85cf97289.php b/data/cache/PHPStan/a7/70/a770789801c10d90a66ee33c2e8caca85cf97289.php deleted file mode 100644 index 72aa28a..0000000 --- a/data/cache/PHPStan/a7/70/a770789801c10d90a66ee33c2e8caca85cf97289.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:1;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/a8/0c/a80c1b97f67b232db03874f0b54ed6975802a2c0.php b/data/cache/PHPStan/a8/0c/a80c1b97f67b232db03874f0b54ed6975802a2c0.php deleted file mode 100644 index 987cb64..0000000 --- a/data/cache/PHPStan/a8/0c/a80c1b97f67b232db03874f0b54ed6975802a2c0.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ab/1b/ab1b23c4afc47a46121bb14a990e3d2f510b4409.php b/data/cache/PHPStan/ab/1b/ab1b23c4afc47a46121bb14a990e3d2f510b4409.php deleted file mode 100644 index 241a780..0000000 --- a/data/cache/PHPStan/ab/1b/ab1b23c4afc47a46121bb14a990e3d2f510b4409.php +++ /dev/null @@ -1,944 +0,0 @@ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub-1603454189', - 'data' => - array ( - '7eba3caed61cab58771cf510c1371bbf' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template-covariant TKey - * @template-covariant TValue - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Traversable', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '1f781cb6a4ac42c807e77a16d39384fa' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template-covariant TKey - * @template-covariant TValue - * - * @extends Traversable - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'IteratorAggregate', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '767f6164cd12cda9e88f97cbe4f08470' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Traversable - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'IteratorAggregate', - 'functionName' => 'getIterator', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'IteratorAggregate', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'IteratorAggregate', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '7e40b44919ce96270750bd2c3f127a8a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template-covariant TKey - * @template-covariant TValue - * - * @extends Traversable - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Iterator', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e28668f085ad3c1bde30c8e46110a811' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Iterator', - 'functionName' => 'current', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Iterator', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Iterator', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '17d24c88dab835d39c2b01605d3080cf' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TKey - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Iterator', - 'functionName' => 'key', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Iterator', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Iterator', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '67af6c5e902a42dab263103ed83ae27f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @extends Iterator - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'RecursiveIterator', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '2768b731b1ed382564a2f6665a7a703e' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template-covariant TKey - * @template-covariant TValue - * @template TSend - * @template-covariant TReturn - * - * @implements Iterator - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Generator', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'd9dd64e771487c593a9c5e45aaf587a2' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TReturn - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Generator', - 'functionName' => 'getReturn', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Generator', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Generator', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TSend' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Generator', - 'functionName' => NULL, - )), - 'name' => 'TSend', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TReturn' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Generator', - 'functionName' => NULL, - )), - 'name' => 'TReturn', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'add94bbf4d896dae4f913b671f95c958' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TSend $value - * @return TValue - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'Generator', - 'functionName' => 'send', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Generator', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Generator', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TSend' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Generator', - 'functionName' => NULL, - )), - 'name' => 'TSend', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TReturn' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Generator', - 'functionName' => NULL, - )), - 'name' => 'TReturn', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'd9c92005bfaa835d662d9bb4798ab436' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @implements Traversable - * @implements ArrayAccess - * @implements Iterator - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SimpleXMLElement', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'f048e494a33a2ab2a428256d66fe8994' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template-covariant TKey - * @template-covariant TValue - * @extends Iterator - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SeekableIterator', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '3528111eff509c1243df50fdbe2b1941' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TKey - * @template TValue - * @implements SeekableIterator - * @implements ArrayAccess - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayIterator', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'af4f8ac6dc1e460aac0812521da5a107' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param array $array - * @param int $flags - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayIterator', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayIterator', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayIterator', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '68abab6f86534772ed2cb534f0ff26d1' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue $value - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayIterator', - 'functionName' => 'append', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayIterator', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayIterator', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'e8035f176e3b2e3c1879b4515e91e625' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return array - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayIterator', - 'functionName' => 'getArrayCopy', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayIterator', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayIterator', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '7e1f4c80dd3b736c2ca82d2e100e5416' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param callable(TValue, TValue): int $cmp_function - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayIterator', - 'functionName' => 'uasort', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayIterator', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayIterator', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'cd2991973c5e91b7487a960e43fc19f4' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param callable(TKey, TKey): int $cmp_function - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayIterator', - 'functionName' => 'uksort', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayIterator', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayIterator', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'b188e8f2e7a77129d5e3e0e22766b88a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template T of \\Traversable - * @mixin T - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'RecursiveIteratorIterator', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'dec4df167020a1e58af785411a515821' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param T $iterator - * @param int $mode - * @param int $flags - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'RecursiveIteratorIterator', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'T' => - PHPStan\Type\Generic\TemplateObjectType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'RecursiveIteratorIterator', - 'functionName' => NULL, - )), - 'name' => 'T', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'bound' => - PHPStan\Type\ObjectType::__set_state(array( - 'className' => 'Traversable', - 'subtractedType' => NULL, - 'classReflection' => NULL, - 'genericObjectType' => NULL, - 'superTypes' => - array ( - ), - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'className' => 'Traversable', - 'subtractedType' => NULL, - 'classReflection' => NULL, - 'genericObjectType' => NULL, - 'superTypes' => - array ( - ), - )), - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ab/47/ab47638c0f5b6604e459e8b26a76c0460fcf96c8.php b/data/cache/PHPStan/ab/47/ab47638c0f5b6604e459e8b26a76c0460fcf96c8.php deleted file mode 100644 index 561d1da..0000000 --- a/data/cache/PHPStan/ab/47/ab47638c0f5b6604e459e8b26a76c0460fcf96c8.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"Collection";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ab/b8/abb8cdd78a2d8b6f362f19b55cbdbd58a4bffb77.php b/data/cache/PHPStan/ab/b8/abb8cdd78a2d8b6f362f19b55cbdbd58a4bffb77.php deleted file mode 100644 index 9b3e39f..0000000 --- a/data/cache/PHPStan/ab/b8/abb8cdd78a2d8b6f362f19b55cbdbd58a4bffb77.php +++ /dev/null @@ -1,78 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php-1603543737', - 'data' => - array ( - '8f902fe5bb65a59750794ddb6469a59e' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** @var mixed */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\ExactValueType', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'dfc7142f768b533a3b819feca967b1eb' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\ExactValueType', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'c24e467a65fd76e48128b6d652a1a38e' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\ExactValueType', - 'functionName' => 'check', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ab/db/abdbdb57ee9fe8827341192ddd0a7b84b53981bf.php b/data/cache/PHPStan/ab/db/abdbdb57ee9fe8827341192ddd0a7b84b53981bf.php deleted file mode 100644 index 953117d..0000000 --- a/data/cache/PHPStan/ab/db/abdbdb57ee9fe8827341192ddd0a7b84b53981bf.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ad/b9/adb9fb049ce98c71152804ae143e2be343a18e4f.php b/data/cache/PHPStan/ad/b9/adb9fb049ce98c71152804ae143e2be343a18e4f.php deleted file mode 100644 index a879ba9..0000000 --- a/data/cache/PHPStan/ad/b9/adb9fb049ce98c71152804ae143e2be343a18e4f.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603543737', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/OptionalType.php', - 'modifiedTime' => 1603543737, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ae/37/ae373a4ac29a22dce843d2aabc091196aee2fb7c.php b/data/cache/PHPStan/ae/37/ae373a4ac29a22dce843d2aabc091196aee2fb7c.php deleted file mode 100644 index d5df262..0000000 --- a/data/cache/PHPStan/ae/37/ae373a4ac29a22dce843d2aabc091196aee2fb7c.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ae/42/ae42806e3c50767db85e0e08f3fbec902e03c76a.php b/data/cache/PHPStan/ae/42/ae42806e3c50767db85e0e08f3fbec902e03c76a.php deleted file mode 100644 index b33f811..0000000 --- a/data/cache/PHPStan/ae/42/ae42806e3c50767db85e0e08f3fbec902e03c76a.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:9:"TNewValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:1:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TNewValue";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Sequence";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TNewValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ae/8a/ae8ac29c1a321f3966a1c2c5b0ced21fa50f1b06.php b/data/cache/PHPStan/ae/8a/ae8ac29c1a321f3966a1c2c5b0ced21fa50f1b06.php deleted file mode 100644 index d71314c..0000000 --- a/data/cache/PHPStan/ae/8a/ae8ac29c1a321f3966a1c2c5b0ced21fa50f1b06.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:3:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TPriority";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:2;O:44:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayShapeNode":1:{s:5:"items";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayShapeItemNode":3:{s:7:"keyName";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"priority";}s:8:"optional";b:0;s:9:"valueType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TPriority";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayShapeItemNode":3:{s:7:"keyName";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"data";}s:8:"optional";b:0;s:9:"valueType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/b1/3b/b13b871ad7aef06514cb36eeb7971605a44e32a2.php b/data/cache/PHPStan/b1/3b/b13b871ad7aef06514cb36eeb7971605a44e32a2.php deleted file mode 100644 index e18d56b..0000000 --- a/data/cache/PHPStan/b1/3b/b13b871ad7aef06514cb36eeb7971605a44e32a2.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:49:"Interface to provide accessing objects as arrays.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:47:"https://php.net/manual/en/class.arrayaccess.php";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/b3/d8/b3d8069dba0a1e67e58db2439fc676faffa2bbe7.php b/data/cache/PHPStan/b3/d8/b3d8069dba0a1e67e58db2439fc676faffa2bbe7.php deleted file mode 100644 index a52492a..0000000 --- a/data/cache/PHPStan/b3/d8/b3d8069dba0a1e67e58db2439fc676faffa2bbe7.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"Collection";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/b4/46/b4468d537e8981d09e6e6b5e9a84f0f5267c83a6.php b/data/cache/PHPStan/b4/46/b4468d537e8981d09e6e6b5e9a84f0f5267c83a6.php deleted file mode 100644 index 963f5c0..0000000 --- a/data/cache/PHPStan/b4/46/b4468d537e8981d09e6e6b5e9a84f0f5267c83a6.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603454189', - 'data' => - array ( - 0 => - array ( - 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/../../../../../jetbrains/phpstorm-stubs/date/date_c.stub', - 'modifiedTime' => 1603454189, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/b4/c3/b4c3c16c3efee2aa4112997b19a88162d9273fd5.php b/data/cache/PHPStan/b4/c3/b4c3c16c3efee2aa4112997b19a88162d9273fd5.php deleted file mode 100644 index 0656884..0000000 --- a/data/cache/PHPStan/b4/c3/b4c3c16c3efee2aa4112997b19a88162d9273fd5.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603454189', - 'data' => - array ( - 0 => - array ( - 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', - 'modifiedTime' => 1603454189, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/b6/fc/b6fc8598ade47c8f9ced34f6bb705b94aae73c96.php b/data/cache/PHPStan/b6/fc/b6fc8598ade47c8f9ced34f6bb705b94aae73c96.php deleted file mode 100644 index 96994e6..0000000 --- a/data/cache/PHPStan/b6/fc/b6fc8598ade47c8f9ced34f6bb705b94aae73c96.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"iterable";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/b8/57/b857f151d9eee738b2a728cadd71a52d2af1a83c.php b/data/cache/PHPStan/b8/57/b857f151d9eee738b2a728cadd71a52d2af1a83c.php deleted file mode 100644 index 55a6130..0000000 --- a/data/cache/PHPStan/b8/57/b857f151d9eee738b2a728cadd71a52d2af1a83c.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:5:"TKey2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TKey2";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$map";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Map";}s:12:"genericTypes";a:2:{i:0;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TKey2";}}}i:1;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/b8/e3/b8e3dca32ad19ac12c2fe3c286e7cfd5b97a93c3.php b/data/cache/PHPStan/b8/e3/b8e3dca32ad19ac12c2fe3c286e7cfd5b97a93c3.php deleted file mode 100644 index 2de38ec..0000000 --- a/data/cache/PHPStan/b8/e3/b8e3dca32ad19ac12c2fe3c286e7cfd5b97a93c3.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603454189', - 'data' => - array ( - 0 => - array ( - 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/../../../../../jetbrains/phpstorm-stubs/Core/Core_c.stub', - 'modifiedTime' => 1603454189, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/b9/f5/b9f51c8eaabcec054c2de5a4493332627a7e190b.php b/data/cache/PHPStan/b9/f5/b9f51c8eaabcec054c2de5a4493332627a7e190b.php deleted file mode 100644 index d71d735..0000000 --- a/data/cache/PHPStan/b9/f5/b9f51c8eaabcec054c2de5a4493332627a7e190b.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:8:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$wsdlFile";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:18:"$originalClassName";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:14:"$mockClassName";s:11:"description";s:0:"";}}i:4;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode":1:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$methods";s:11:"description";s:0:"";}}i:5;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}s:10:"isVariadic";b:0;s:13:"parameterName";s:24:"$callOriginalConstructor";s:11:"description";s:0:"";}}i:6;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode":1:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$options";s:11:"description";s:0:"";}}i:7;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:15:"@phpstan-return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:50:"PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"MockObject";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ba/45/ba45dfbbf41ccac63abd7024cde9758b704ab45e.php b/data/cache/PHPStan/ba/45/ba45dfbbf41ccac63abd7024cde9758b704ab45e.php deleted file mode 100644 index 6f2198d..0000000 --- a/data/cache/PHPStan/ba/45/ba45dfbbf41ccac63abd7024cde9758b704ab45e.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"object";}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@property-read";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PropertyTagValueNode":3:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:12:"propertyName";s:5:"$name";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ba/47/ba47a23cd182eb7bec5721914695adb03053c094.php b/data/cache/PHPStan/ba/47/ba47a23cd182eb7bec5721914695adb03053c094.php deleted file mode 100644 index f95dfed..0000000 --- a/data/cache/PHPStan/ba/47/ba47a23cd182eb7bec5721914695adb03053c094.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:5:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:8:"TDefault";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$key";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"TDefault";}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$default";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"TDefault";}}}s:11:"description";s:0:"";}}i:4;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:21:"\\OutOfBoundsException";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/bb/8f/bb8f5e5fb1ab91df44808ba9b1fbd3ebdf1d021c.php b/data/cache/PHPStan/bb/8f/bb8f5e5fb1ab91df44808ba9b1fbd3ebdf1d021c.php deleted file mode 100644 index 04cd68c..0000000 --- a/data/cache/PHPStan/bb/8f/bb8f5e5fb1ab91df44808ba9b1fbd3ebdf1d021c.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:15:"DOMDocumentType";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/bc/2b/bc2b559377237532e608f642cbc72e3309f1f2fa.php b/data/cache/PHPStan/bc/2b/bc2b559377237532e608f642cbc72e3309f1f2fa.php deleted file mode 100644 index 39253a1..0000000 --- a/data/cache/PHPStan/bc/2b/bc2b559377237532e608f642cbc72e3309f1f2fa.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"\\Traversable";}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@mixin";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\MixinTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/bc/e8/bce81fbc582defb6dd5dbd68543058765a3dff8b.php b/data/cache/PHPStan/bc/e8/bce81fbc582defb6dd5dbd68543058765a3dff8b.php deleted file mode 100644 index d61d661..0000000 --- a/data/cache/PHPStan/bc/e8/bce81fbc582defb6dd5dbd68543058765a3dff8b.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"TSend";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/bd/37/bd37ea4ef287a9aa0e114b52a027b2efb5d8f3be.php b/data/cache/PHPStan/bd/37/bd37ea4ef287a9aa0e114b52a027b2efb5d8f3be.php deleted file mode 100644 index 13b8993..0000000 --- a/data/cache/PHPStan/bd/37/bd37ea4ef287a9aa0e114b52a027b2efb5d8f3be.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"iterable";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/bf/d2/bfd2fe383718086c7fd58237ae26b25915459537.php b/data/cache/PHPStan/bf/d2/bfd2fe383718086c7fd58237ae26b25915459537.php deleted file mode 100644 index 7c7b62e..0000000 --- a/data/cache/PHPStan/bf/d2/bfd2fe383718086c7fd58237ae26b25915459537.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:11:"$comparator";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/c1/92/c1922562605ad2653aa5032f493c53c6c7e82ed0.php b/data/cache/PHPStan/c1/92/c1922562605ad2653aa5032f493c53c6c7e82ed0.php deleted file mode 100644 index 5ac12f3..0000000 --- a/data/cache/PHPStan/c1/92/c1922562605ad2653aa5032f493c53c6c7e82ed0.php +++ /dev/null @@ -1,34 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php-1603543737', - 'data' => - array ( - '36cb919699abe2e8c2c82a4ea186cadb' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'datetime' => 'DateTime', - 'datetimezone' => 'DateTimeZone', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\DatetimeType', - 'functionName' => 'check', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/c2/e9/c2e93f6dc26fab2f24f883eed87cf283d85255c8.php b/data/cache/PHPStan/c2/e9/c2e93f6dc26fab2f24f883eed87cf283d85255c8.php deleted file mode 100644 index d2d67f0..0000000 --- a/data/cache/PHPStan/c2/e9/c2e93f6dc26fab2f24f883eed87cf283d85255c8.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/c4/6b/c46b08a745e113d3444ae8a7aebcf01d43b2b54b.php b/data/cache/PHPStan/c4/6b/c46b08a745e113d3444ae8a7aebcf01d43b2b54b.php deleted file mode 100644 index f1eb0d9..0000000 --- a/data/cache/PHPStan/c4/6b/c46b08a745e113d3444ae8a7aebcf01d43b2b54b.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:9:"TNewValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:1:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TNewValue";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"Vector";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TNewValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/c6/90/c690e2bebb5d378158c041037dc531dec0616f44.php b/data/cache/PHPStan/c6/90/c690e2bebb5d378158c041037dc531dec0616f44.php deleted file mode 100644 index de717e9..0000000 --- a/data/cache/PHPStan/c6/90/c690e2bebb5d378158c041037dc531dec0616f44.php +++ /dev/null @@ -1,34 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php-1603543737', - 'data' => - array ( - 'b102ef405cf77188cac37dd9675a7809' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Check', - 'uses' => - array ( - 'countable' => 'Countable', - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Check\\CountCheck', - 'functionName' => 'check', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/c6/c7/c6c7e15d15806f232958ca2745aaa89dda159192.php b/data/cache/PHPStan/c6/c7/c6c7e15d15806f232958ca2745aaa89dda159192.php deleted file mode 100644 index bb5188a..0000000 --- a/data/cache/PHPStan/c6/c7/c6c7e15d15806f232958ca2745aaa89dda159192.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:1:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/c7/3d/c73df6ee5044a0fb9003cad34d64f70e135e8c2a.php b/data/cache/PHPStan/c7/3d/c73df6ee5044a0fb9003cad34d64f70e135e8c2a.php deleted file mode 100644 index 47ae343..0000000 --- a/data/cache/PHPStan/c7/3d/c73df6ee5044a0fb9003cad34d64f70e135e8c2a.php +++ /dev/null @@ -1,8 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ErrorInterface.php-1603535530', - 'data' => - array ( - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/c9/c2/c9c25e3685e0266e5464f4250be70d1eb1f61e02.php b/data/cache/PHPStan/c9/c2/c9c25e3685e0266e5464f4250be70d1eb1f61e02.php deleted file mode 100644 index f1125f5..0000000 --- a/data/cache/PHPStan/c9/c2/c9c25e3685e0266e5464f4250be70d1eb1f61e02.php +++ /dev/null @@ -1,30 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/CheckerInterface.php-1603535699', - 'data' => - array ( - '1621523e6b2f05faa5602d1d381618d6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $element the element which should be tested - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck', - 'uses' => - array ( - 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\CheckerInterface', - 'functionName' => 'fulfills', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ca/e9/cae98a0407200523afcfc69c3258e8f0355399a0.php b/data/cache/PHPStan/ca/e9/cae98a0407200523afcfc69c3258e8f0355399a0.php deleted file mode 100644 index 234164c..0000000 --- a/data/cache/PHPStan/ca/e9/cae98a0407200523afcfc69c3258e8f0355399a0.php +++ /dev/null @@ -1,7 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:78:"Stringable interface marks classes as available for serialization -in a string.";}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@since";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:3:"8.0";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/cc/7b/cc7b640f7f737016134e37c80752e603b801bc16.php b/data/cache/PHPStan/cc/7b/cc7b640f7f737016134e37c80752e603b801bc16.php deleted file mode 100644 index cf78cdb..0000000 --- a/data/cache/PHPStan/cc/7b/cc7b640f7f737016134e37c80752e603b801bc16.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode":1:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:13:"TypeInterface";}}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/cc/a4/cca421c1ec9795196258ff6d5a5d167ed6817f8b.php b/data/cache/PHPStan/cc/a4/cca421c1ec9795196258ff6d5a5d167ed6817f8b.php deleted file mode 100644 index e057804..0000000 --- a/data/cache/PHPStan/cc/a4/cca421c1ec9795196258ff6d5a5d167ed6817f8b.php +++ /dev/null @@ -1,6 +0,0 @@ - '1603538914-v2', - 'data' => false, -)); \ No newline at end of file diff --git a/data/cache/PHPStan/cc/f3/ccf3a128dd7dc46bd6f3a7dc119f8110dd1ced7f.php b/data/cache/PHPStan/cc/f3/ccf3a128dd7dc46bd6f3a7dc119f8110dd1ced7f.php deleted file mode 100644 index 8114b29..0000000 --- a/data/cache/PHPStan/cc/f3/ccf3a128dd7dc46bd6f3a7dc119f8110dd1ced7f.php +++ /dev/null @@ -1,221 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub-1596634130', - 'data' => - array ( - '1a68fb86cfbd8faa4d32f95d2ca6ec5c' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template T - * @phpstan-param class-string $originalClassName - * @phpstan-return MockObject&T - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'PHPUnit\\Framework', - 'uses' => - array ( - 'mockobject' => 'PHPUnit\\Framework\\MockObject\\MockObject', - 'mockbuilder' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', - ), - 'className' => 'PHPUnit\\Framework\\TestCase', - 'functionName' => 'createStub', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '552cc06cfba6981aba484c74857bec4a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template T - * @phpstan-param class-string $originalClassName - * @phpstan-return MockObject&T - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'PHPUnit\\Framework', - 'uses' => - array ( - 'mockobject' => 'PHPUnit\\Framework\\MockObject\\MockObject', - 'mockbuilder' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', - ), - 'className' => 'PHPUnit\\Framework\\TestCase', - 'functionName' => 'createMock', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '5f960146cdb7f8e85b903e6b1fc11d4a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template T - * @phpstan-param class-string $className - * @phpstan-return MockBuilder - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'PHPUnit\\Framework', - 'uses' => - array ( - 'mockobject' => 'PHPUnit\\Framework\\MockObject\\MockObject', - 'mockbuilder' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', - ), - 'className' => 'PHPUnit\\Framework\\TestCase', - 'functionName' => 'getMockBuilder', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '0287921d1a9578aa4a2508000ca2f2c6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template T - * @phpstan-param class-string $originalClassName - * @phpstan-return MockObject&T - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'PHPUnit\\Framework', - 'uses' => - array ( - 'mockobject' => 'PHPUnit\\Framework\\MockObject\\MockObject', - 'mockbuilder' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', - ), - 'className' => 'PHPUnit\\Framework\\TestCase', - 'functionName' => 'createConfiguredMock', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '8405416ae47345190355be0a41c4da5f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template T - * @phpstan-param class-string $originalClassName - * @phpstan-param string[] $methods - * @phpstan-return MockObject&T - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'PHPUnit\\Framework', - 'uses' => - array ( - 'mockobject' => 'PHPUnit\\Framework\\MockObject\\MockObject', - 'mockbuilder' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', - ), - 'className' => 'PHPUnit\\Framework\\TestCase', - 'functionName' => 'createPartialMock', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '4eac825f9738888d15152c7af4d58bdc' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template T - * @phpstan-param class-string $originalClassName - * @phpstan-return MockObject&T - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'PHPUnit\\Framework', - 'uses' => - array ( - 'mockobject' => 'PHPUnit\\Framework\\MockObject\\MockObject', - 'mockbuilder' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', - ), - 'className' => 'PHPUnit\\Framework\\TestCase', - 'functionName' => 'createTestProxy', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '2cf3b6db3687673267b8f71d21f24077' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template T - * @phpstan-param class-string $originalClassName - * @phpstan-param mixed[] $arguments - * @phpstan-param string $mockClassName - * @phpstan-param bool $callOriginalConstructor - * @phpstan-param bool $callOriginalClone - * @phpstan-param bool $callAutoload - * @phpstan-param string[] $mockedMethods - * @phpstan-param bool $cloneArguments - * @phpstan-return MockObject&T - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'PHPUnit\\Framework', - 'uses' => - array ( - 'mockobject' => 'PHPUnit\\Framework\\MockObject\\MockObject', - 'mockbuilder' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', - ), - 'className' => 'PHPUnit\\Framework\\TestCase', - 'functionName' => 'getMockForAbstractClass', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'efeaf3624025a63334520fc7da13fd44' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template T - * @phpstan-param string $wsdlFile - * @phpstan-param class-string $originalClassName - * @phpstan-param string $mockClassName - * @phpstan-param string[] $methods - * @phpstan-param bool $callOriginalConstructor - * @phpstan-param mixed[] $options - * @phpstan-return MockObject&T - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'PHPUnit\\Framework', - 'uses' => - array ( - 'mockobject' => 'PHPUnit\\Framework\\MockObject\\MockObject', - 'mockbuilder' => 'PHPUnit\\Framework\\MockObject\\MockBuilder', - ), - 'className' => 'PHPUnit\\Framework\\TestCase', - 'functionName' => 'getMockFromWsdl', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/cd/81/cd8187c54df620f355446b2bc7cd3894125463d1.php b/data/cache/PHPStan/cd/81/cd8187c54df620f355446b2bc7cd3894125463d1.php deleted file mode 100644 index 34ee21b..0000000 --- a/data/cache/PHPStan/cd/81/cd8187c54df620f355446b2bc7cd3894125463d1.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:4:"$set";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ce/4b/ce4b30a72a5e2ba85367918e894068d4d8ad93a2.php b/data/cache/PHPStan/ce/4b/ce4b30a72a5e2ba85367918e894068d4d8ad93a2.php deleted file mode 100644 index f36c839..0000000 --- a/data/cache/PHPStan/ce/4b/ce4b30a72a5e2ba85367918e894068d4d8ad93a2.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:20:"\\OutOfRangeException";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ce/e4/cee4d36311afa199a7ad1330e9863dcce72bb9d5.php b/data/cache/PHPStan/ce/e4/cee4d36311afa199a7ad1330e9863dcce72bb9d5.php deleted file mode 100644 index 50ae6d0..0000000 --- a/data/cache/PHPStan/ce/e4/cee4d36311afa199a7ad1330e9863dcce72bb9d5.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:10:"$className";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:15:"@phpstan-return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:11:"MockBuilder";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/cf/be/cfbe786521a231a526b45d878f07f2214b1abaf6.php b/data/cache/PHPStan/cf/be/cfbe786521a231a526b45d878f07f2214b1abaf6.php deleted file mode 100644 index f528400..0000000 --- a/data/cache/PHPStan/cf/be/cfbe786521a231a526b45d878f07f2214b1abaf6.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:1:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"Set";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/d0/07/d007c7695ba5eb445ea5a7dcf6d406bead213429.php b/data/cache/PHPStan/d0/07/d007c7695ba5eb445ea5a7dcf6d406bead213429.php deleted file mode 100644 index 4e12986..0000000 --- a/data/cache/PHPStan/d0/07/d007c7695ba5eb445ea5a7dcf6d406bead213429.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:62:"Error is the base class for all internal PHP error exceptions.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:41:"https://php.net/manual/en/class.error.php";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@since";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:3:"7.0";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/d1/71/d171381da9e1fc3dfe6271e76cfc66ce8de8d815.php b/data/cache/PHPStan/d1/71/d171381da9e1fc3dfe6271e76cfc66ce8de8d815.php deleted file mode 100644 index b0e40f6..0000000 --- a/data/cache/PHPStan/d1/71/d171381da9e1fc3dfe6271e76cfc66ce8de8d815.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:8:"@extends";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ExtendsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Iterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/d2/5a/d25a12b2ff83257315e6a18922d11f8fea5fe72a.php b/data/cache/PHPStan/d2/5a/d25a12b2ff83257315e6a18922d11f8fea5fe72a.php deleted file mode 100644 index c5792b7..0000000 --- a/data/cache/PHPStan/d2/5a/d25a12b2ff83257315e6a18922d11f8fea5fe72a.php +++ /dev/null @@ -1,2127 +0,0 @@ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/../../../../../jetbrains/phpstorm-stubs/date/date_c.stub-1603454189', - 'data' => - array ( - '3d2b6ab28f6e17405d84ced2a1d2a01b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @since 5.5 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeInterface', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '05d9568ffe7061a1898d7722596ea60f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Returns the difference between two DateTime objects - * @link https://secure.php.net/manual/en/datetime.diff.php - * @param DateTimeInterface $datetime2

The date to compare to.

- * @param bool $absolute

Should the interval be forced to be positive?

- * @return DateInterval - * The https://secure.php.net/manual/en/class.dateinterval.php DateInterval} object representing the - * difference between the two dates or FALSE on failure. - * - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeInterface', - 'functionName' => 'diff', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '45e1b866b335fceabd023697bf10e506' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Returns date formatted according to given format - * @link https://secure.php.net/manual/en/datetime.format.php - * @param string $format

- * Format accepted by {@link https://secure.php.net/manual/en/function.date.php date()}. - *

- * @return string - * Returns the formatted date string on success or FALSE on failure. - * - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeInterface', - 'functionName' => 'format', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'b3cf701a52c3599920acb61006ff2f5d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Returns the timezone offset - * @return int - * Returns the timezone offset in seconds from UTC on success - * or FALSE on failure. - * - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeInterface', - 'functionName' => 'getOffset', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'dfc8e0413fdc54c9e442e735df5c8bb4' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Gets the Unix timestamp - * @return int - * Returns the Unix timestamp representing the date. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeInterface', - 'functionName' => 'getTimestamp', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '35bb4db4afbb2986bd5340375b7d3c34' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Return time zone relative to given DateTime - * @link https://secure.php.net/manual/en/datetime.gettimezone.php - * @return DateTimeZone - * Returns a {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone} object on success - * or FALSE on failure. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeInterface', - 'functionName' => 'getTimezone', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'cff73f8c843748412116c5e219f481e4' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * The __wakeup handler - * @link https://secure.php.net/manual/en/datetime.wakeup.php - * @return void Initializes a DateTime object. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeInterface', - 'functionName' => '__wakeup', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e09063dfb8a0f8abb4d8d3aeb3a0b3e6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @since 5.5 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'b2388a1da3f180a476fba1a39afb0688' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * @link https://secure.php.net/manual/en/datetimeimmutable.construct.php - * @param string $time [optional] - *

A date/time string. Valid formats are explained in {@link https://secure.php.net/manual/en/datetime.formats.php Date and Time Formats}.

- *

- * Enter NULL here to obtain the current time when using - * the $timezone parameter. - *

- * @param DateTimeZone $timezone [optional]

- * A {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone} object representing the - * timezone of $time. - *

- *

- * If $timezone is omitted, - * the current timezone will be used. - *

- *

Note: - *

- * The $timezone parameter - * and the current timezone are ignored when the - *$time parameter either - * is a UNIX timestamp (e.g. @946684800) - * or specifies a timezone - * (e.g. 2010-01-28T15:00:00+02:00). - *

- * @throws Exception Emits Exception in case of an error. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'd229b36c7d2c18350bd49e63ef0dd9a6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Adds an amount of days, months, years, hours, minutes and seconds - * @param DateInterval $interval - * @return static - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'add', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'f6eec2318dd8a2a1bb101c9574d9a3e3' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Returns new DateTimeImmutable object formatted according to the specified format - * @link https://secure.php.net/manual/en/datetimeimmutable.createfromformat.php - * @param string $format - * @param string $time - * @param DateTimeZone $timezone [optional] - * @return DateTimeImmutable|false - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'createFromFormat', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'c3c6bff5a9de0679698b2916c7704416' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.6.0)
- * Returns new DateTimeImmutable object encapsulating the given DateTime object - * @link https://secure.php.net/manual/en/datetimeimmutable.createfrommutable.php - * @param DateTime $dateTime The mutable DateTime object that you want to convert to an immutable version. This object is not modified, but instead a new DateTimeImmutable object is created containing the same date time and timezone information. - * @return DateTimeImmutable returns a new DateTimeImmutable instance. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'createFromMutable', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '3138af5c20a7d6ca24405a6a007f05f4' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Returns the warnings and errors - * @link https://secure.php.net/manual/en/datetimeimmutable.getlasterrors.php - * @return array Returns array containing info about warnings and errors. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'getLastErrors', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '85cf171bc477f145bba53faf9c00f47a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Alters the timestamp - * @link https://secure.php.net/manual/en/datetimeimmutable.modify.php - * @param string $modify

A date/time string. Valid formats are explained in - * {@link https://secure.php.net/manual/en/datetime.formats.php Date and Time Formats}.

- * @return static - * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'modify', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '92f0a7ab0c7b7340a3ba031fd9c2e3ee' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * The __set_state handler - * @link https://secure.php.net/manual/en/datetimeimmutable.set-state.php - * @param array $array

Initialization array.

- * @return DateTimeImmutable - * Returns a new instance of a {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => '__set_state', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '8a7917cf6cae97d592f63f606113d725' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Sets the date - * @link https://secure.php.net/manual/en/datetimeimmutable.setdate.php - * @param int $year

Year of the date.

- * @param int $month

Month of the date.

- * @param int $day

Day of the date.

- * @return static|false - * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. - * - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'setDate', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e0bd9e4ddab53e6d2b2ab335384586dd' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Sets the ISO date - * @link https://php.net/manual/en/class.datetimeimmutable.php - * @param int $year

Year of the date.

- * @param int $week

Week of the date.

- * @param int $day [optional]

Offset from the first day of the week.

- * @return static|false - * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'setISODate', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'eff9e28ff976f01f59c7efa098201ad4' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Sets the time - * @link https://secure.php.net/manual/en/datetimeimmutable.settime.php - * @param int $hour

Hour of the time.

- * @param int $minute

Minute of the time.

- * @param int $second [optional]

Second of the time.

- * @param int $microseconds [optional]

Microseconds of the time. Added since 7.1

- * @return static|false - * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'setTime', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e115e2a900f5aa158716c1888f9eea2d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Sets the date and time based on an Unix timestamp - * @link https://secure.php.net/manual/en/datetimeimmutable.settimestamp.php - * @param int $unixtimestamp

Unix timestamp representing the date.

- * @return static|false - * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'setTimestamp', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '3048aff20d3c0828963d8215676e6285' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Sets the time zone - * @link https://secure.php.net/manual/en/datetimeimmutable.settimezone.php - * @param DateTimeZone $timezone

- * A {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone} object representing the - * desired time zone. - *

- * @return static|false - * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'setTimezone', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e85b721f0e11b498af1d6109bb31f86f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Subtracts an amount of days, months, years, hours, minutes and seconds - * @link https://secure.php.net/manual/en/datetimeimmutable.sub.php - * @param DateInterval $interval

- * A {@link https://secure.php.net/manual/en/class.dateinterval.php DateInterval} object - *

- * @return static|false - * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'sub', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '02ed4bedfce1468bb8a8bfee9bb5f47b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Returns the difference between two DateTime objects - * @link https://secure.php.net/manual/en/datetime.diff.php - * @param DateTimeInterface $datetime2

The date to compare to.

- * @param bool $absolute [optional]

Should the interval be forced to be positive?

- * @return DateInterval - * The {@link https://secure.php.net/manual/en/class.dateinterval.php DateInterval} object representing the - * difference between the two dates or FALSE on failure. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'diff', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'f2944e2fa340b990ac26c5d9235d9835' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Returns date formatted according to given format - * @link https://secure.php.net/manual/en/datetime.format.php - * @param string $format

- * Format accepted by {@link https://secure.php.net/manual/en/function.date.php date()}. - *

- * @return string - * Returns the formatted date string on success or FALSE on failure. - * - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'format', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'afbc407c23232100ac62c439635fe903' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Returns the timezone offset - * @return int - * Returns the timezone offset in seconds from UTC on success - * or FALSE on failure. - * - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'getOffset', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '2f18b808d80d5de80474d55f4c5e1d6b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Gets the Unix timestamp - * @return int - * Returns the Unix timestamp representing the date. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'getTimestamp', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'd66acc4dacd80f5f00bcd849b61b9484' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * Return time zone relative to given DateTime - * @link https://secure.php.net/manual/en/datetime.gettimezone.php - * @return DateTimeZone - * Returns a {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone} object on success - * or FALSE on failure. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'getTimezone', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '901779d809c12aeb638371ff9b898518' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.5.0)
- * The __wakeup handler - * @link https://secure.php.net/manual/en/datetime.wakeup.php - * @return void Initializes a DateTime object. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => '__wakeup', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '07962246d960845fb374ef5b5373a4d7' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return DateTimeImmutable - * @since 8.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeImmutable', - 'functionName' => 'createFromInterface', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '4d738d3613343d18ec8a34d0c2d6c9ad' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Representation of date and time. - * @link https://php.net/manual/en/class.datetime.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'a8f2098ed859674061ca7b77bb55c2ee' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * (PHP 5 >=5.2.0)
- * @link https://php.net/manual/en/datetime.construct.php - * @param string $time [optional] - *

A date/time string. Valid formats are explained in {@link https://php.net/manual/en/datetime.formats.php Date and Time Formats}.

- *

- * Enter now here to obtain the current time when using - * the $timezone parameter. - *

- * @param DateTimeZone $timezone [optional]

- * A {@link https://php.net/manual/en/class.datetimezone.php DateTimeZone} object representing the - * timezone of $time. - *

- *

- * If $timezone is omitted, - * the current timezone will be used. - *

- *

Note: - *

- * The $timezone parameter - * and the current timezone are ignored when the - *$time parameter either - * is a UNIX timestamp (e.g. @946684800) - * or specifies a timezone - * (e.g. 2010-01-28T15:00:00+02:00). - *

- * @throws Exception Emits Exception in case of an error. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '4b2577a6898a5bc7f5141cd26ecb65c3' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return void - * @link https://php.net/manual/en/datetime.wakeup.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => '__wakeup', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'c3b5481407104a1301a6f907f195d149' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns date formatted according to given format. - * @param string $format - * @return string - * @link https://php.net/manual/en/datetime.format.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'format', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '297189520ef78020955611f851232f7f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Alter the timestamp of a DateTime object by incrementing or decrementing - * in a format accepted by strtotime(). - * @param string $modify A date/time string. Valid formats are explained in Date and Time Formats. - * @return static|false Returns the DateTime object for method chaining or FALSE on failure. - * @link https://php.net/manual/en/datetime.modify.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'modify', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '15545988f734091bc9f93252a5cee4ff' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Adds an amount of days, months, years, hours, minutes and seconds to a DateTime object - * @param DateInterval $interval - * @return static - * @link https://php.net/manual/en/datetime.add.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'add', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'a0092a92ce5c562b52d844409366223a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @since 7.3 - * @return DateTime - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'createFromImmutable', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '3d968364f0a866fbdde395c7bc45ed4a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Subtracts an amount of days, months, years, hours, minutes and seconds from a DateTime object - * @param DateInterval $interval - * @return static - * @link https://php.net/manual/en/datetime.sub.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'sub', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '2e9d8e0cf685b07457929195d5cc57fd' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Get the TimeZone associated with the DateTime - * @return DateTimeZone - * @link https://php.net/manual/en/datetime.gettimezone.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'getTimezone', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'ac7c80d39a01fc8c1cf1d167af8d82ba' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Set the TimeZone associated with the DateTime - * @param DateTimeZone $timezone - * @return static - * @link https://php.net/manual/en/datetime.settimezone.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'setTimezone', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '082ef51a3555e08c1c1bbc77fba66a33' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns the timezone offset - * @return int - * @link https://php.net/manual/en/datetime.getoffset.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'getOffset', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '54c6bf3cf5efde62f696b3bb81131fae' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Sets the current time of the DateTime object to a different time. - * @param int $hour - * @param int $minute - * @param int $second - * @param int $microseconds Added since 7.1 - * @return static|false - * @link https://php.net/manual/en/datetime.settime.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'setTime', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '9951e88ffc0966ed3d90e17eead67331' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Sets the current date of the DateTime object to a different date. - * @param int $year - * @param int $month - * @param int $day - * @return static - * @link https://php.net/manual/en/datetime.setdate.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'setDate', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '7b586febe34684356f8751c3e221bfe8' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Set a date according to the ISO 8601 standard - using weeks and day offsets rather than specific dates. - * @param int $year - * @param int $week - * @param int $day - * @return static - * @link https://php.net/manual/en/datetime.setisodate.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'setISODate', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '206d934697d1951d145b5334065ef85f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Sets the date and time based on a Unix timestamp. - * @param int $unixtimestamp - * @return static - * @link https://php.net/manual/en/datetime.settimestamp.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'setTimestamp', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'ada43331066bc057afd8b40c3a9fd80d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the Unix timestamp. - * @return int - * @link https://php.net/manual/en/datetime.gettimestamp.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'getTimestamp', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '5f286fa2382ee7b5cb18dc82736ccb2d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns the difference between two DateTime objects represented as a DateInterval. - * @param DateTimeInterface $datetime2 The date to compare to. - * @param bool $absolute [optional] Whether to return absolute difference. - * @return DateInterval|false The DateInterval object representing the difference between the two dates or FALSE on failure. - * @link https://php.net/manual/en/datetime.diff.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'diff', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '34d849ed095d9ceb9aa1f1d12c7d36c9' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Parse a string into a new DateTime object according to the specified format - * @param string $format Format accepted by date(). - * @param string $time String representing the time. - * @param DateTimeZone $timezone A DateTimeZone object representing the desired time zone. - * @return DateTime|false - * @link https://php.net/manual/en/datetime.createfromformat.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'createFromFormat', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e4a877c79d509935adc0e4265bc07c17' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns an array of warnings and errors found while parsing a date/time string - * @return array - * @link https://php.net/manual/en/datetime.getlasterrors.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'getLastErrors', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '600d35880b0adfd617b1ee50d1b36c95' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * The __set_state handler - * @link https://php.net/manual/en/datetime.set-state.php - * @param array $array

Initialization array.

- * @return DateTime

Returns a new instance of a DateTime object.

- */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => '__set_state', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '50af2f67575a3af7e2b14e7b56c2c738' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return DateTime - * @since 8.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTime', - 'functionName' => 'createFromInterface', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '666c4a863be65df7d01513be68fa73b2' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Representation of time zone - * @link https://php.net/manual/en/class.datetimezone.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeZone', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e1111e1b389a23c2d258ecc0a29a0b66' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param string $timezone - * @link https://php.net/manual/en/datetimezone.construct.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeZone', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '3b4136d54023382d21d2cccb9f44e745' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns the name of the timezone - * @return string - * @link https://php.net/manual/en/datetimezone.getname.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeZone', - 'functionName' => 'getName', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '6edc178c31c28a9d3770872fbabde9a2' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns location information for a timezone - * @return array - * @link https://php.net/manual/en/datetimezone.getlocation.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeZone', - 'functionName' => 'getLocation', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'f08ff0ba5d44d48d63091cec0d9048d2' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns the timezone offset from GMT - * @param DateTimeInterface $datetime - * @return int - * @link https://php.net/manual/en/datetimezone.getoffset.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeZone', - 'functionName' => 'getOffset', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '130d33f70882c6f41f9f5d0ba6560be4' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns all transitions for the timezone - * @param int $timestamp_begin [optional] - * @param int $timestamp_end [optional] - * @return array - * @link https://php.net/manual/en/datetimezone.gettransitions.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeZone', - 'functionName' => 'getTransitions', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'ffee69a5375c2c96dfb3f0029fbb95f7' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns associative array containing dst, offset and the timezone name - * @return array - * @link https://php.net/manual/en/datetimezone.listabbreviations.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeZone', - 'functionName' => 'listAbbreviations', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '65a4d0caf504237a10883d23fb185bdd' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns a numerically indexed array with all timezone identifiers - * @param int $what - * @param string $country - * @return array - * @link https://php.net/manual/en/datetimezone.listidentifiers.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeZone', - 'functionName' => 'listIdentifiers', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'a96a3e4329bff9813944ab07bf8506e2' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @link https://php.net/manual/en/datetime.wakeup.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateTimeZone', - 'functionName' => '__wakeup', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '93fae83ab46665cffb5ac92abd17a899' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Representation of date interval. A date interval stores either a fixed amount of - * time (in years, months, days, hours etc) or a relative time string in the format - * that DateTime\'s constructor supports. - * @link https://php.net/manual/en/class.dateinterval.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateInterval', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '63c03b54f8f0270c9388f089a782a83b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Number of years - * @var int - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateInterval', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '6990065273d56e5372b2f12ba9f6e77f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Number of months - * @var int - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateInterval', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '5dcb6c6d291a21b103320041290b8aa6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Number of days - * @var int - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateInterval', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '5b6cbc367800618a7b1a9096ddfa4340' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Number of hours - * @var int - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateInterval', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '299c8129ac9365450d74ce936c6387d6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Number of minutes - * @var int - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateInterval', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '912a9967d20df047e51579d6299dc52a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Number of seconds - * @var int - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateInterval', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'd261093d5f688aa1ec29eb564269581c' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Number of microseconds - * @since 7.1.0 - * @var float - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateInterval', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'bb9419d0def14bfd68c268ee155fc2b7' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Is 1 if the interval is inverted and 0 otherwise - * @var int - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateInterval', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '0b06f02e7070cba43e9583226991e382' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Total number of days the interval spans. If this is unknown, days will be FALSE. - * @var int|false - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateInterval', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'b637b2f4790d80cee178ab676b682acf' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param string $interval_spec - * @link https://php.net/manual/en/dateinterval.construct.php - * @throws \\Exception when the interval_spec cannot be parsed as an interval. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateInterval', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '91937c12c523414faacc0e435e8cd71d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Formats the interval - * @param $format - * @return string - * @link https://php.net/manual/en/dateinterval.format.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateInterval', - 'functionName' => 'format', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '043be9eec7284bf8e9380a80104f2160' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Sets up a DateInterval from the relative parts of the string - * @param string $time - * @return DateInterval - * @link https://php.net/manual/en/dateinterval.createfromdatestring.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateInterval', - 'functionName' => 'createFromDateString', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'ae0af064cddf6f713c922e3bddcc44fb' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Representation of date period. - * @link https://php.net/manual/en/class.dateperiod.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DatePeriod', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'b95ebd38d43eef95d538c2e0d810e741' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Start date - * @var DateTimeInterface - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DatePeriod', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '18342bddda0d3e5d66e6c4df45de1b7e' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Current iterator value. - * @var DateTimeInterface|null - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DatePeriod', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '25fb06dfd7fd90587f39c6efd8941e8a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * End date. - * @var DateTimeInterface|null - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DatePeriod', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'b26e4911dd966088fa8271af709108f3' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * The interval - * @var DateInterval - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DatePeriod', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '6fed0fb3246334b29897102e61deb6fd' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Number of recurrences. - * @var int - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DatePeriod', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '73ec99f743f1e8ae9ebe0dc61c4e0df6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Start of period. - * @var bool - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DatePeriod', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '69feb3240ac3d8ce7b4588b278b88d06' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param DateTimeInterface $start - * @param DateInterval $interval - * @param DateTimeInterface $end - * @param int $options Can be set to DatePeriod::EXCLUDE_START_DATE. - * @link https://php.net/manual/en/dateperiod.construct.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DatePeriod', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'eb420301e52d5737402e6eddb499ebe0' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param DateTimeInterface $start - * @param DateInterval $interval - * @param int $recurrences Number of recurrences - * @param int $options Can be set to DatePeriod::EXCLUDE_START_DATE. - * @link https://php.net/manual/en/dateperiod.construct.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DatePeriod', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'e9b5432750ad6de41a0a3cd163f6ebba' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param string $isostr String containing the ISO interval. - * @param int $options Can be set to DatePeriod::EXCLUDE_START_DATE. - * @link https://php.net/manual/en/dateperiod.construct.php - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DatePeriod', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '44dc2a1d3fe95708642c1f1fc7321e5d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the interval - * @return DateInterval - * @link https://php.net/manual/en/dateperiod.getdateinterval.php - * @since 5.6.5 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DatePeriod', - 'functionName' => 'getDateInterval', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '583f84e603ec875632ad03e2a855617f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the end date - * @return DateTimeInterface|null - * @link https://php.net/manual/en/dateperiod.getenddate.php - * @since 5.6.5 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DatePeriod', - 'functionName' => 'getEndDate', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'ff7b572f0c55b0ce0b819752e4df55d6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Gets the start date - * @return DateTimeInterface - * @link https://php.net/manual/en/dateperiod.getstartdate.php - * @since 5.6.5 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DatePeriod', - 'functionName' => 'getStartDate', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '8d8920728aa3409f435d4a514ec99339' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Get the number of recurrences - * @return int - * @link https://php.net/manual/en/dateperiod.getrecurrences.php - * @since 7.2.17 - * @since 7.3.4 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DatePeriod', - 'functionName' => 'getRecurrences', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'cd5b3c0fe8c0d6bac93242d16b286dac' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @since 8.0 - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DatePeriod', - 'functionName' => 'getIterator', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/d2/f6/d2f6b5ac15f6fa7012b3045cb7e68b009cfef69d.php b/data/cache/PHPStan/d2/f6/d2f6b5ac15f6fa7012b3045cb7e68b009cfef69d.php deleted file mode 100644 index 7f8bfdd..0000000 --- a/data/cache/PHPStan/d2/f6/d2f6b5ac15f6fa7012b3045cb7e68b009cfef69d.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/d4/12/d412241aafa86f3b0144cde635ff239c6fbebe89.php b/data/cache/PHPStan/d4/12/d412241aafa86f3b0144cde635ff239c6fbebe89.php deleted file mode 100644 index 94f6eed..0000000 --- a/data/cache/PHPStan/d4/12/d412241aafa86f3b0144cde635ff239c6fbebe89.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode":1:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:13:"TypeInterface";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$children";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/d5/83/d58345230f80c9c457e5ef675579a4e8bb8f062d.php b/data/cache/PHPStan/d5/83/d58345230f80c9c457e5ef675579a4e8bb8f062d.php deleted file mode 100644 index 41d7f5d..0000000 --- a/data/cache/PHPStan/d5/83/d58345230f80c9c457e5ef675579a4e8bb8f062d.php +++ /dev/null @@ -1,820 +0,0 @@ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub-1603454189', - 'data' => - array ( - '88cc35d2b802999bb9c5185afedeaa77' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TKey - * @template TValue - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayAccess', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '31072f3ad2c93f0875c959e167c6dcea' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TKey $offset - * @return bool - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayAccess', - 'functionName' => 'offsetExists', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayAccess', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayAccess', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '09d6824a20494a7a23a4ea15a8caab5a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TKey $offset - * @return TValue|null - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayAccess', - 'functionName' => 'offsetGet', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayAccess', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayAccess', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '675302ea577eaefd89d8285497693304' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TKey|null $offset - * @param TValue $value - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayAccess', - 'functionName' => 'offsetSet', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayAccess', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayAccess', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '00c86ace0f30e14d027e1838ce5bd5be' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TKey $offset - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayAccess', - 'functionName' => 'offsetUnset', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayAccess', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayAccess', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '97c224d8d4f1e530c33c55ae991399b9' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TKey - * @template TValue - * @implements IteratorAggregate - * @implements ArrayAccess - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayObject', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '58da7e332eb03b9b084bba04d5f7fa5a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param array|object $input - * @param int $flags - * @param class-string $iterator_class - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayObject', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayObject', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayObject', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '8e5562cdf5c23e4a848ad4ed03f30618' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue $value - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayObject', - 'functionName' => 'append', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayObject', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayObject', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'c38012599d0aa30512e6693d968d3289' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return array - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayObject', - 'functionName' => 'getArrayCopy', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayObject', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayObject', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '6e98e995863825b63b62cc6c5385f6f8' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param callable(TValue, TValue): int $cmp_function - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayObject', - 'functionName' => 'uasort', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayObject', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayObject', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '0b3502b77e1d7d7ebe38e3c9b87cf773' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param callable(TKey, TKey): int $cmp_function - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayObject', - 'functionName' => 'uksort', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayObject', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayObject', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '9c158f2fa441cd83a1a92f8907ab6752' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return ArrayIterator - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayObject', - 'functionName' => 'getIterator', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayObject', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayObject', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'c337c6078a3849cbcbc532ac1d1176cc' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param class-string $iterator_class - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ArrayObject', - 'functionName' => 'setIteratorClass', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayObject', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'ArrayObject', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '80d4794bdd41c195e890ac2eebe8392a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue - * @implements Iterator - * @implements IteratorAggregate - * @implements ArrayAccess - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplFixedArray', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'a44ecdc6fbaf7a565d743c6ddd2ee1c1' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TInput - * @param array $array - * @return SplFixedArray - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplFixedArray', - 'functionName' => 'fromArray', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplFixedArray', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'a7a8c89e5a3598835d4137c39ecd97ed' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return array - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'SplFixedArray', - 'functionName' => 'toArray', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'SplFixedArray', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/d6/c7/d6c7894d2c3f31a89cbb701649ffdb29880305c3.php b/data/cache/PHPStan/d6/c7/d6c7894d2c3f31a89cbb701649ffdb29880305c3.php deleted file mode 100644 index 1340299..0000000 --- a/data/cache/PHPStan/d6/c7/d6c7894d2c3f31a89cbb701649ffdb29880305c3.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"object";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$input";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$flags";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:15:"$iterator_class";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/d6/d1/d6d1cf91766bba92a19ba0f5f8ad32c56411dc23.php b/data/cache/PHPStan/d6/d1/d6d1cf91766bba92a19ba0f5f8ad32c56411dc23.php deleted file mode 100644 index 13357ff..0000000 --- a/data/cache/PHPStan/d6/d1/d6d1cf91766bba92a19ba0f5f8ad32c56411dc23.php +++ /dev/null @@ -1,29 +0,0 @@ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub-1603454189', - 'data' => - array ( - 'fba43560cb18eb37e960d401da43931e' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @var int|false - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'DateInterval', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/d8/4f/d84f1f1b679a04eb41dfed1d9eb8bd63495a3739.php b/data/cache/PHPStan/d8/4f/d84f1f1b679a04eb41dfed1d9eb8bd63495a3739.php deleted file mode 100644 index fbd8794..0000000 --- a/data/cache/PHPStan/d8/4f/d84f1f1b679a04eb41dfed1d9eb8bd63495a3739.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:15:"$iterator_class";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/d9/61/d9612a4104111b7f099f71a618f1e30a2b68fe04.php b/data/cache/PHPStan/d9/61/d9612a4104111b7f099f71a618f1e30a2b68fe04.php deleted file mode 100644 index 0ba97fc..0000000 --- a/data/cache/PHPStan/d9/61/d9612a4104111b7f099f71a618f1e30a2b68fe04.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/d9/6e/d96e6114bae224af917ef66aa644cbd3d2ad388d.php b/data/cache/PHPStan/d9/6e/d96e6114bae224af917ef66aa644cbd3d2ad388d.php deleted file mode 100644 index 9423d3e..0000000 --- a/data/cache/PHPStan/d9/6e/d96e6114bae224af917ef66aa644cbd3d2ad388d.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603454189', - 'data' => - array ( - 0 => - array ( - 'filename' => 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/../../../../../jetbrains/phpstorm-stubs/json/json.stub', - 'modifiedTime' => 1603454189, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/da/0c/da0c41b7b7efaab03b8c58d20ab83fa2b47876f4.php b/data/cache/PHPStan/da/0c/da0c41b7b7efaab03b8c58d20ab83fa2b47876f4.php deleted file mode 100644 index d5cf257..0000000 --- a/data/cache/PHPStan/da/0c/da0c41b7b7efaab03b8c58d20ab83fa2b47876f4.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:9:"TPriority";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"\\Iterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/da/91/da911c7c46b1b5fdf99e60f594bd1fa7b0de57f5.php b/data/cache/PHPStan/da/91/da911c7c46b1b5fdf99e60f594bd1fa7b0de57f5.php deleted file mode 100644 index 9f07bf7..0000000 --- a/data/cache/PHPStan/da/91/da911c7c46b1b5fdf99e60f594bd1fa7b0de57f5.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603538228', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php', - 'modifiedTime' => 1603538228, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/dc/a9/dca91084a6fffc5ff8585f980e51b9c4f4af7a0b.php b/data/cache/PHPStan/dc/a9/dca91084a6fffc5ff8585f980e51b9c4f4af7a0b.php deleted file mode 100644 index 56ef906..0000000 --- a/data/cache/PHPStan/dc/a9/dca91084a6fffc5ff8585f980e51b9c4f4af7a0b.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TValue2";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"iterable";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"Vector";}s:12:"genericTypes";a:1:{i:0;O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:7:"TValue2";}}}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/dd/35/dd35a6f2b8b307afb80055a2e8afbfc4be43623b.php b/data/cache/PHPStan/dd/35/dd35a6f2b8b307afb80055a2e8afbfc4be43623b.php deleted file mode 100644 index ee054f6..0000000 --- a/data/cache/PHPStan/dd/35/dd35a6f2b8b307afb80055a2e8afbfc4be43623b.php +++ /dev/null @@ -1,7 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:128:"Throwable is the base interface for any object that can be thrown via a throw statement in PHP 7, -including Error and Exception.";}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:5:"@link";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:45:"https://php.net/manual/en/class.throwable.php";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@since";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:3:"7.0";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/dd/5b/dd5b834cc67cb680840b8984056bd3aa642557a4.php b/data/cache/PHPStan/dd/5b/dd5b834cc67cb680840b8984056bd3aa642557a4.php deleted file mode 100644 index fbc3a89..0000000 --- a/data/cache/PHPStan/dd/5b/dd5b834cc67cb680840b8984056bd3aa642557a4.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603537726', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ResultInterface.php', - 'modifiedTime' => 1603537726, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/dd/ad/ddad4a9d3067ff46a5f269031f7ab097a5d8d512.php b/data/cache/PHPStan/dd/ad/ddad4a9d3067ff46a5f269031f7ab097a5d8d512.php deleted file mode 100644 index d87f119..0000000 --- a/data/cache/PHPStan/dd/ad/ddad4a9d3067ff46a5f269031f7ab097a5d8d512.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:6:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:5:"TSend";s:5:"bound";N;s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:7:"TReturn";s:5:"bound";N;s:11:"description";s:0:"";}}i:4;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:5;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Iterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/dd/d1/ddd19efd73efd622a0e33a448ab1edf31f57217d.php b/data/cache/PHPStan/dd/d1/ddd19efd73efd622a0e33a448ab1edf31f57217d.php deleted file mode 100644 index 8218254..0000000 --- a/data/cache/PHPStan/dd/d1/ddd19efd73efd622a0e33a448ab1edf31f57217d.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:1:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Sequence";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/de/c1/dec120293f83544841608b0b8244f1b466274780.php b/data/cache/PHPStan/de/c1/dec120293f83544841608b0b8244f1b466274780.php deleted file mode 100644 index 57ea307..0000000 --- a/data/cache/PHPStan/de/c1/dec120293f83544841608b0b8244f1b466274780.php +++ /dev/null @@ -1,54 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php-1603538228', - 'data' => - array ( - 'c04db3151052046973b8338f9dd88c23' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** @var TypeInterface[] */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\ObjectType', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '8c0b7e6f73dddc44936f16388f39e1b2' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TypeInterface[] $children - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\ObjectType', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/de/e4/dee4b9bf1b90f7e353e74a4a2acb6d708b044aad.php b/data/cache/PHPStan/de/e4/dee4b9bf1b90f7e353e74a4a2acb6d708b044aad.php deleted file mode 100644 index c461b81..0000000 --- a/data/cache/PHPStan/de/e4/dee4b9bf1b90f7e353e74a4a2acb6d708b044aad.php +++ /dev/null @@ -1,73 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ResultInterface.php-1603537726', - 'data' => - array ( - 'b514ca500553c5240e70880ee520ee81' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @package Cubicl\\StructureCheck - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck', - 'uses' => - array ( - ), - 'className' => 'Cubicl\\StructureCheck\\ResultInterface', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '75b17834e7a5262ef5949e08b1f3245c' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns TRUE if the check was successful. - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck', - 'uses' => - array ( - ), - 'className' => 'Cubicl\\StructureCheck\\ResultInterface', - 'functionName' => 'isValid', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'cedf84becf40cc103bb2f7673da028ba' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * Returns a list of errors. If no error occurred, it will return an empty array. - * - * @return array - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck', - 'uses' => - array ( - ), - 'className' => 'Cubicl\\StructureCheck\\ResultInterface', - 'functionName' => 'getErrors', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/df/ff/dfffda35031533d5f3c3def47b1112fc85c90940.php b/data/cache/PHPStan/df/ff/dfffda35031533d5f3c3def47b1112fc85c90940.php deleted file mode 100644 index 53f2d6b..0000000 --- a/data/cache/PHPStan/df/ff/dfffda35031533d5f3c3def47b1112fc85c90940.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@since";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:3:"8.0";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/e0/2a/e02afeaabe77653c97a35c740be56b13386484dd.php b/data/cache/PHPStan/e0/2a/e02afeaabe77653c97a35c740be56b13386484dd.php deleted file mode 100644 index 1594ac6..0000000 --- a/data/cache/PHPStan/e0/2a/e02afeaabe77653c97a35c740be56b13386484dd.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TCarry";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:3:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TCarry";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:2;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TCarry";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TCarry";}s:10:"isVariadic";b:0;s:13:"parameterName";s:8:"$initial";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TCarry";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/e0/c3/e0c3951210468e1993eb63cab47a7b5b90900c58.php b/data/cache/PHPStan/e0/c3/e0c3951210468e1993eb63cab47a7b5b90900c58.php deleted file mode 100644 index 1c76984..0000000 --- a/data/cache/PHPStan/e0/c3/e0c3951210468e1993eb63cab47a7b5b90900c58.php +++ /dev/null @@ -1,6 +0,0 @@ - '1603535529-v2', - 'data' => false, -)); \ No newline at end of file diff --git a/data/cache/PHPStan/e1/41/e141554384b393b6d9000a46e3db1e4a5ec223ec.php b/data/cache/PHPStan/e1/41/e141554384b393b6d9000a46e3db1e4a5ec223ec.php deleted file mode 100644 index e5c72f8..0000000 --- a/data/cache/PHPStan/e1/41/e141554384b393b6d9000a46e3db1e4a5ec223ec.php +++ /dev/null @@ -1,6 +0,0 @@ - '1603537726-v2', - 'data' => false, -)); \ No newline at end of file diff --git a/data/cache/PHPStan/e1/a7/e1a726c9b10a25c77ef8e287e3c5d2a17c2afc3e.php b/data/cache/PHPStan/e1/a7/e1a726c9b10a25c77ef8e287e3c5d2a17c2afc3e.php deleted file mode 100644 index a786f7b..0000000 --- a/data/cache/PHPStan/e1/a7/e1a726c9b10a25c77ef8e287e3c5d2a17c2afc3e.php +++ /dev/null @@ -1,6086 +0,0 @@ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub-1603454189', - 'data' => - array ( - '63aec1a7334bb9a64eccf57609d6ddc4' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template-covariant TKey - * @template-covariant TValue - * @extends Traversable - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Collection', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '5df3002e0bda93e8ba98725609e0f9e5' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Collection - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Collection', - 'functionName' => 'copy', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Collection', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Collection', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '119c02b887d196688b2da107d967f7e3' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return array - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Collection', - 'functionName' => 'toArray', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Collection', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Collection', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'dffb645183e1e3136cd7c233fc58d97b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue - * @implements Sequence - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Deque', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '40b60a5c5c7d54f1d6ccc7b46b157aa6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param iterable $values - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Deque', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Deque', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '8cff6d82cc7fe37ffbb23dd636301e9a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Deque - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Deque', - 'functionName' => 'copy', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Deque', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'fcae3853a7f3d8426177457dd587066f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue2 - * @param iterable $values - * @return Deque - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Deque', - 'functionName' => 'merge', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Deque', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '84a8343aea8232497d3dd8ed4953ab0b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param (callable(TValue): bool)|null $callback - * @return Deque - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Deque', - 'functionName' => 'filter', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Deque', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'ebf90a73e9cb3202b61e7756357205f8' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TNewValue - * @param callable(TValue): TNewValue $callback - * @return Deque - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Deque', - 'functionName' => 'map', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Deque', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'a7253a24decb2e6dd35f49d2645530d1' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Deque - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Deque', - 'functionName' => 'reversed', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Deque', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '94874d13799d0902422b92474193e43c' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Deque - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Deque', - 'functionName' => 'slice', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Deque', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '2944cff2651b589334ccc38f32fb6c92' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TKey - * @template TValue - * @implements Collection - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'bd0bfdb909a3134d68c5e1f41877d667' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param iterable $values - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '1a0e812a2cabcc39ad2445c51d7bd9f6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Map - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'copy', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '72a1b29802bffcc0a521ccdd4b0725e9' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param callable(TKey, TValue): TValue $callback - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'apply', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '48ee3b5855e4a0d398c69fe20fcf6564' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Pair - * @throws UnderflowException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'first', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '38af794904cc490f9f21cbdf6e4d68f1' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Pair - * @throws UnderflowException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'last', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'eb5a447316c2d1c450bf680afc42651f' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Pair - * @throws OutOfRangeException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'skip', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'c816c2046e3210c891dff7d3bb06700e' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TKey2 - * @template TValue2 - * @param iterable $values - * @return Map - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'merge', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '89998820a0f727a6ce5adc27989f93a0' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TKey2 - * @template TValue2 - * @param Map $map - * @return Map - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'intersect', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '2ca3d52921add14eeb7d693faf46a1dd' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue2 - * @param Map $map - * @return Map - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'diff', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '62f6dbe2ca23ab5fb60124dc4fbec710' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TKey $key - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'hasKey', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'be90e32bce2a08c7798911912837e689' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'hasValue', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '9a4248d2bf812d5f42d586f65ffa170b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param (callable(TKey, TValue): bool)|null $callback - * @return Map - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'filter', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '1460e7b9153226f206b988dcbcf5b29b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TDefault - * @param TKey $key - * @param TDefault $default - * @return TValue|TDefault - * @throws OutOfBoundsException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'get', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'bf87a4d1e817f15c56b1813c73bad080' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Set - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'keys', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '5b2a7329e685f283d25c56386c25c2f0' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TNewValue - * @param callable(TKey, TValue): TNewValue $callback - * @return Map - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'map', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '5210295ba5d392a0e15b907949c93557' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Sequence> - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'pairs', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '435b5b3dfa980a5befab282e64e20fbd' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TKey $key - * @param TValue $value - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'put', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '30f19da05e9919053e2a9338625cae34' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param iterable $values - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'putAll', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '4b6040d0430ae9e80a4b1fbd27d7e206' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TCarry - * @param callable(TCarry, TKey, TValue): TCarry $callback - * @param TCarry $initial - * @return TCarry - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'reduce', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'aab3fdfa28245f6a230a7982aa785dbc' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TDefault - * @param TKey $key - * @param TDefault $default - * @return TValue|TDefault - * @throws \\OutOfBoundsException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'remove', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '0d7b68717336ef4cc573705d68a9e783' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Map - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'reversed', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '79a47d96fee57a8065667faa008e9ec2' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Map - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'slice', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'eaf1a371ef2d5f4bf2bb739ae8dd2497' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param (callable(TValue, TValue): int)|null $comparator - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'sort', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '8ed0c87b7ceab4aa1eb93c62dde2df45' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param (callable(TValue, TValue): int)|null $comparator - * @return Map - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'sorted', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'ae3bcc34bd07bf3cd9b0a647e6575242' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param (callable(TKey, TKey): int)|null $comparator - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'ksort', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'b1f2af4e0730cb1d41761917bc762b92' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param (callable(TKey, TKey): int)|null $comparator - * @return Map - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'ksorted', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'de683147ad23fbed64dc28856b92e690' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return array - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'toArray', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '65bc90784782b312077e1c5c4148aa7d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Sequence - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'values', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '3ba4fd71d4db58af957f132b6ba29b97' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TKey2 - * @template TValue2 - * @param Map $map - * @return Map - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'union', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '8b93aa61b4be161edeb1886727fcc05d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TKey2 - * @template TValue2 - * @param Map $map - * @return Map - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Map', - 'functionName' => 'xor', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Map', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'ca0571b554d7e936106b9f0bde384533' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template-covariant TKey - * @template-covariant TValue - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Pair', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'f8c23f9d4ec986a7528adedc2a530879' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @var TKey - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Pair', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Pair', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Pair', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '355bd3441e5c151f4cd35fdc5c31b8c4' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @var TValue - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Pair', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Pair', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Pair', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '25389934237fb7482c4a7dde905c70ca' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TKey $key - * @param TValue $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Pair', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Pair', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Pair', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'ed05907a6d5b2e6407b572b528f08002' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Pair - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Pair', - 'functionName' => 'copy', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TKey' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Pair', - 'functionName' => NULL, - )), - 'name' => 'TKey', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Pair', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 2, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'b3df67215f26417e1631212bba2cd07d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue - * @extends Collection - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '44abfde8617a5fb516df6373baa28af6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param callable(TValue): TValue $callback - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'apply', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '386f818067425d0b323d48a6a904709a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue ...$values - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'contains', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '320e8cc8c2acfd6ddec8acea0492406e' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param (callable(TValue): bool)|null $callback - * @return Sequence - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'filter', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'd08838d09ebc56f728a65a9d83bd8e57' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue $value - * @return int|false - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'find', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '6c0a4829915bf1f70622cf716e3df6c0' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - * @throws \\UnderflowException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'first', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '9348ce3bc9ffe0b0ea9acc8dbe57bfc7' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - * @throws \\OutOfRangeException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'get', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '81d3b71a8abb999a142dcb91ee2fc536' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue ...$values - * @throws \\OutOfRangeException - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'insert', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'bc7095c9280ea7b204f5316fff3c9150' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param string $glue - * @return string - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'join', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '87382845a1f10dc3e4bc0c19573b1a4e' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - * @throws \\UnderflowException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'last', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '9dd8c2c9827cfe72aeaa6ae916f390d5' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TNewValue - * @param callable(TValue): TNewValue $callback - * @return Sequence - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'map', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '8d2113865c84936fa2b44b94a9a0ed55' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue2 - * @param iterable $values - * @return Sequence - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'merge', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'edf96c329d6c8267fefea89a070a0420' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - * @throws \\UnderflowException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'pop', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '104f6f995312d03784a4ecfb4b074bf0' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue ...$values - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'push', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'b6f3daa0e83d0ae65057afbfae2fc770' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TCarry - * @param callable(TCarry, TValue): TCarry $callback - * @param TCarry $initial - * @return TCarry - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'reduce', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '13d1472602282436bb5fa32b9af2b17c' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - * @throws \\OutOfRangeException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'remove', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'f575f2873dad334d9ddcb95863816e10' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Sequence - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'reversed', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '2cf75a76b05a8ada1db66c51c6461bcc' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue $value - * @throws \\OutOfRangeException - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'set', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'b463f09955fc6ef277fbfd4d6f2b7a33' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - * @throws \\UnderflowException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'shift', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '7ca08a112f6e863909f7f6d98a2a5933' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Sequence - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'slice', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '7d0d55894d44f592abc92791e1fcd61e' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param (callable(TValue, TValue): int)|null $comparator - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'sort', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '79b619f72c6385b417ef391b1ed71dcd' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param (callable(TValue, TValue): int)|null $comparator - * @return Sequence - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'sorted', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '34808d2ebce4492e4ebb246adf0c7a03' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue ...$values - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Sequence', - 'functionName' => 'unshift', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Sequence', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '4e6fb3081c51eea1c436f4c21b10ba34' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue - * @implements Sequence - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Vector', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '7dfb41cb9657b06c436cd036c1f3ff15' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param iterable $values - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Vector', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Vector', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'c4c79a1bd67832040d7ac0d0667d1400' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Vector - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Vector', - 'functionName' => 'copy', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Vector', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'a5c292f328c147bea15f62ad2657bb7a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Vector - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Vector', - 'functionName' => 'reversed', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Vector', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'd5ce41b161c10737ebfa2b5ae0cedb9c' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Vector - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Vector', - 'functionName' => 'slice', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Vector', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'f16cb27280ecdcd130348fc92fcfe282' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param (callable(TValue, TValue): int)|null $comparator - * @return Vector - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Vector', - 'functionName' => 'sorted', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Vector', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '6ce8160b6e8036aedcc99a652f901426' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param (callable(TValue): bool)|null $callback - * @return Vector - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Vector', - 'functionName' => 'filter', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Vector', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '468a6f2ef17d7111b7848b23d0fa2f59' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TNewValue - * @param callable(TValue): TNewValue $callback - * @return Vector - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Vector', - 'functionName' => 'map', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Vector', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '469542c6d2e7eebe3d3dd1fc20cea701' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue2 - * @param iterable $values - * @return Vector - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Vector', - 'functionName' => 'merge', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Vector', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'ea5454164f5f1606e9ee088e9b3f1237' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue - * @implements Collection - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - 'a01aac9fb6046729b47f1e391df9156b' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param iterable $values - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'b988129e93abbcab89c776a865ad4043' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue ...$values - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'add', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'c2db7fc2f7bade7d40025dfe284b32ea' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue ...$values - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'contains', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'b8964e93730ba24a2fe2d15ed9b5d124' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Set - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'copy', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '6d94a9b0667cced4c7af5c5511ae00b9' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue2 - * @param Set $set - * @return Set - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'diff', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '59aeb33bf545cc3c3c482a7e802e1bc8' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param (callable(TValue): bool)|null $callback - * @return Set - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'filter', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '1f115819ee07c9d51cd275fcdb398fe2' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - * @throws \\UnderflowException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'first', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '545ca6d94f10f47c1cdbd60dc12b98c2' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - * @throws \\OutOfRangeException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'get', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '650ea90951e0c55dcf2866a421cc48bb' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue2 - * @param Set $set - * @return Set - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'intersect', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'b3a7a9cc5ec2b88308b732cead99a9c2' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - * @throws \\UnderflowException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'last', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '15e8b68e4d5e3f0697351f02b25d03de' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue2 - * @param iterable $values - * @return Set - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'merge', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '65981a8657b4087471545c5abca5e7d2' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue ...$values - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'remove', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '63e1be2cff05a99bc384213b66436579' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Set - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'reversed', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'e3157e4a9272cb677a38932fed618ab6' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Set - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'slice', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '9406d35e9082172a2c163f7e41c099df' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param (callable(TValue, TValue): int)|null $comparator - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'sort', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '610f6713d86b3afce8baade21eba6623' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param (callable(TValue, TValue): int)|null $comparator - * @return Set - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'sorted', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'b4ffcfb1f377f4f2dedefb8da5ddba95' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return list - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'toArray', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '016c99f0fe454c2bffd89f9126ad8175' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue2 - * @param Set $set - * @return Set - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'union', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '57d5b7ba2330209aeb60e4a512e9ba96' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue2 - * @param Set $set - * @return Set - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Set', - 'functionName' => 'xor', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Set', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'db5eab0992505e98da914674e9d18497' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue - * @implements Collection - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Stack', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '77b38aab4767661ac1784937fff7faf2' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param iterable $values - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Stack', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Stack', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '30f13c6b923b5f5df931e4fd34925755' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Stack - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Stack', - 'functionName' => 'copy', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Stack', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'f1e67d9b1897d7229a8248aecdc424dd' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - * @throws UnderflowException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Stack', - 'functionName' => 'peek', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Stack', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '9ddf80ec493918d0051a7954abfde098' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - * @throws UnderflowException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Stack', - 'functionName' => 'pop', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Stack', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '7fcb35adb06811ed379f2cbeea34f1b8' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue ...$values - * @return void - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Stack', - 'functionName' => 'push', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Stack', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'a76d41320342da02315c6c2113b8abb7' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return list - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Stack', - 'functionName' => 'toArray', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Stack', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '330f184bd3fcf8c2b99c54987dc2aca5' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue - * @implements Collection - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Queue', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '5668d9e01f7bf1ae6d854480938b5671' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param iterable $values - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Queue', - 'functionName' => '__construct', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Queue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '7d1d6fead0c9d2ec1ba6138672f65c9a' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return Queue - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Queue', - 'functionName' => 'copy', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Queue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '6f77b617c7be2755ba40cffb4ab26038' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - * @throws UnderflowException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Queue', - 'functionName' => 'peek', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Queue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '6203f6bdf51479fa5e91643cf8fbea64' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - * @throws UnderflowException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Queue', - 'functionName' => 'pop', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Queue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'cf7659ac1350bf170d08e15beca91c52' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue ...$values - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Queue', - 'functionName' => 'push', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Queue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'a51b1f3cbc67b7654e2e6327de7f623c' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return list - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\Queue', - 'functionName' => 'toArray', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\Queue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '2e69c5d4e901f576ca84d0587d01d9cf' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @template TValue - * @implements Collection - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\PriorityQueue', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '51df22a8c674c94eb73070262b384aaf' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return PriorityQueue - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\PriorityQueue', - 'functionName' => 'copy', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\PriorityQueue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '861cca8512769c30f4a792596a6b9603' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - * @throws UnderflowException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\PriorityQueue', - 'functionName' => 'peek', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\PriorityQueue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '6b1820494f0adcfb4c88283f89f6ca3d' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return TValue - * @throws UnderflowException - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\PriorityQueue', - 'functionName' => 'pop', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\PriorityQueue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - '00645d16c1e9d8ca1ba9c310f231e121' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param TValue $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\PriorityQueue', - 'functionName' => 'push', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\PriorityQueue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - 'bb15d694bf29f4dd507dc63cd7fbdccf' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @return list - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Ds', - 'uses' => - array ( - 'countable' => 'Countable', - 'jsonserializable' => 'JsonSerializable', - 'outofboundsexception' => 'OutOfBoundsException', - 'outofrangeexception' => 'OutOfRangeException', - 'traversable' => 'Traversable', - 'underflowexception' => 'UnderflowException', - ), - 'className' => 'Ds\\PriorityQueue', - 'functionName' => 'toArray', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - 'TValue' => - PHPStan\Type\Generic\TemplateMixedType::__set_state(array( - 'scope' => - PHPStan\Type\Generic\TemplateTypeScope::__set_state(array( - 'className' => 'Ds\\PriorityQueue', - 'functionName' => NULL, - )), - 'name' => 'TValue', - 'strategy' => - PHPStan\Type\Generic\TemplateTypeParameterStrategy::__set_state(array( - )), - 'variance' => - PHPStan\Type\Generic\TemplateTypeVariance::__set_state(array( - 'value' => 1, - )), - 'bound' => NULL, - 'isExplicitMixed' => true, - 'subtractedType' => NULL, - )), - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/e1/d4/e1d40f514e065d528e58310fc766719b31dda359.php b/data/cache/PHPStan/e1/d4/e1d40f514e065d528e58310fc766719b31dda359.php deleted file mode 100644 index 2e4c906..0000000 --- a/data/cache/PHPStan/e1/d4/e1d40f514e065d528e58310fc766719b31dda359.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:2:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}i:1;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:11:"$comparator";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"void";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/e3/c5/e3c553486b2485d247bd6bd0e3914b90c67a93e4.php b/data/cache/PHPStan/e3/c5/e3c553486b2485d247bd6bd0e3914b90c67a93e4.php deleted file mode 100644 index f295999..0000000 --- a/data/cache/PHPStan/e3/c5/e3c553486b2485d247bd6bd0e3914b90c67a93e4.php +++ /dev/null @@ -1,50 +0,0 @@ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub-1603454189', - 'data' => - array ( - 'be63467f0d55417c8ba64c6ff6954787' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @var int - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ZipArchive', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - '712389540044693fe774904cdb8473d8' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => NULL, - 'uses' => - array ( - ), - 'className' => 'ZipArchive', - 'functionName' => NULL, - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/e3/d6/e3d64048576d3b4dd3c8a3c5bceb77330a26176f.php b/data/cache/PHPStan/e3/d6/e3d64048576d3b4dd3c8a3c5bceb77330a26176f.php deleted file mode 100644 index 8436ad1..0000000 --- a/data/cache/PHPStan/e3/d6/e3d64048576d3b4dd3c8a3c5bceb77330a26176f.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TPriority";}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$priority";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"true";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/e5/c1/e5c1632e349e087ae5a7c757d76a9ae1fb7c6acd.php b/data/cache/PHPStan/e5/c1/e5c1632e349e087ae5a7c757d76a9ae1fb7c6acd.php deleted file mode 100644 index bd1271c..0000000 --- a/data/cache/PHPStan/e5/c1/e5c1632e349e087ae5a7c757d76a9ae1fb7c6acd.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$value";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"false";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/e5/c3/e5c3f42e60230db73c41ff5c2adf5539f3fa2f55.php b/data/cache/PHPStan/e5/c3/e5c3f42e60230db73c41ff5c2adf5539f3fa2f55.php deleted file mode 100644 index 3e6dbe5..0000000 --- a/data/cache/PHPStan/e5/c3/e5c3f42e60230db73c41ff5c2adf5539f3fa2f55.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"Deque";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/e7/8a/e78a9585a205dbbed43edcc6315dc48aad0b624f.php b/data/cache/PHPStan/e7/8a/e78a9585a205dbbed43edcc6315dc48aad0b624f.php deleted file mode 100644 index 82d7633..0000000 --- a/data/cache/PHPStan/e7/8a/e78a9585a205dbbed43edcc6315dc48aad0b624f.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:11:"@implements";s:5:"value";O:54:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Sequence";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/e7/a2/e7a26daa24ce442984a6a8ba6ba0030afa924c8b.php b/data/cache/PHPStan/e7/a2/e7a26daa24ce442984a6a8ba6ba0030afa924c8b.php deleted file mode 100644 index d6416fe..0000000 --- a/data/cache/PHPStan/e7/a2/e7a26daa24ce442984a6a8ba6ba0030afa924c8b.php +++ /dev/null @@ -1,6 +0,0 @@ - '1603535699-v2', - 'data' => false, -)); \ No newline at end of file diff --git a/data/cache/PHPStan/e8/32/e83247bd7b1c1562ffe438dfe5907427243da65b.php b/data/cache/PHPStan/e8/32/e83247bd7b1c1562ffe438dfe5907427243da65b.php deleted file mode 100644 index 3b7e588..0000000 --- a/data/cache/PHPStan/e8/32/e83247bd7b1c1562ffe438dfe5907427243da65b.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:10:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:1:"T";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:18:"$originalClassName";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode":1:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"mixed";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:10:"$arguments";s:11:"description";s:0:"";}}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:10:"isVariadic";b:0;s:13:"parameterName";s:14:"$mockClassName";s:11:"description";s:0:"";}}i:4;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}s:10:"isVariadic";b:0;s:13:"parameterName";s:24:"$callOriginalConstructor";s:11:"description";s:0:"";}}i:5;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}s:10:"isVariadic";b:0;s:13:"parameterName";s:18:"$callOriginalClone";s:11:"description";s:0:"";}}i:6;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}s:10:"isVariadic";b:0;s:13:"parameterName";s:13:"$callAutoload";s:11:"description";s:0:"";}}i:7;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode":1:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:14:"$mockedMethods";s:11:"description";s:0:"";}}i:8;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"bool";}s:10:"isVariadic";b:0;s:13:"parameterName";s:15:"$cloneArguments";s:11:"description";s:0:"";}}i:9;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:15:"@phpstan-return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:50:"PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:10:"MockObject";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:1:"T";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/e9/4e/e94ebb3b47f34e8ed39a6e2a65014583500d1d16.php b/data/cache/PHPStan/e9/4e/e94ebb3b47f34e8ed39a6e2a65014583500d1d16.php deleted file mode 100644 index 87b633b..0000000 --- a/data/cache/PHPStan/e9/4e/e94ebb3b47f34e8ed39a6e2a65014583500d1d16.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/e9/ce/e9ceb39be3c5da139b626441971fd2099dcf1f6c.php b/data/cache/PHPStan/e9/ce/e9ceb39be3c5da139b626441971fd2099dcf1f6c.php deleted file mode 100644 index 5515d8d..0000000 --- a/data/cache/PHPStan/e9/ce/e9ceb39be3c5da139b626441971fd2099dcf1f6c.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:9:"TNewValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:46:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode":3:{s:10:"identifier";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"callable";}s:10:"parameters";a:1:{i:0;O:55:"PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode":5:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}s:11:"isReference";b:0;s:10:"isVariadic";b:0;s:13:"parameterName";s:0:"";s:10:"isOptional";b:0;}}s:10:"returnType";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TNewValue";}}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$callback";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"Deque";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TNewValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/e9/fa/e9faed4e6fa23e59e4de957eaae032848e795a97.php b/data/cache/PHPStan/e9/fa/e9faed4e6fa23e59e4de957eaae032848e795a97.php deleted file mode 100644 index d24b5d3..0000000 --- a/data/cache/PHPStan/e9/fa/e9faed4e6fa23e59e4de957eaae032848e795a97.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"iterable";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$values";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ea/e5/eae5d6db7da71566297d73f5a1df212309c98e5c.php b/data/cache/PHPStan/ea/e5/eae5d6db7da71566297d73f5a1df212309c98e5c.php deleted file mode 100644 index 7b5aa6b..0000000 --- a/data/cache/PHPStan/ea/e5/eae5d6db7da71566297d73f5a1df212309c98e5c.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:14:"ErrorInterface";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$errors";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/eb/1d/eb1d130969b88d4bd9d39f8891e9cec990844008.php b/data/cache/PHPStan/eb/1d/eb1d130969b88d4bd9d39f8891e9cec990844008.php deleted file mode 100644 index 504e39a..0000000 --- a/data/cache/PHPStan/eb/1d/eb1d130969b88d4bd9d39f8891e9cec990844008.php +++ /dev/null @@ -1,8 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:4:{i:0;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:63:"Weak maps allow creating a map from objects to arbitrary values";}i:1;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:191:"(similar to SplObjectStorage) without preventing the objects that are used -as keys from being garbage collected. If an object key is garbage collected, -it will simply be removed from the map.";}i:2;O:46:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode":1:{s:4:"text";s:0:"";}i:3;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@since";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode":1:{s:5:"value";s:3:"8.0";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/eb/77/eb77c9a005e659a453b0bc8b5041ef2a462a8015.php b/data/cache/PHPStan/eb/77/eb77c9a005e659a453b0bc8b5041ef2a462a8015.php deleted file mode 100644 index bcb1b50..0000000 --- a/data/cache/PHPStan/eb/77/eb77c9a005e659a453b0bc8b5041ef2a462a8015.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603535530', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ErrorInterface.php', - 'modifiedTime' => 1603535530, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/eb/cf/ebcf66005f1f2acb717ffeac4774d1c041c59add.php b/data/cache/PHPStan/eb/cf/ebcf66005f1f2acb717ffeac4774d1c041c59add.php deleted file mode 100644 index 5f0f5f4..0000000 --- a/data/cache/PHPStan/eb/cf/ebcf66005f1f2acb717ffeac4774d1c041c59add.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}s:10:"isVariadic";b:0;s:13:"parameterName";s:7:"$offset";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"null";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ec/c5/ecc5efd85deeb4d2d6a3f8e16cf1e8471d6364aa.php b/data/cache/PHPStan/ec/c5/ecc5efd85deeb4d2d6a3f8e16cf1e8471d6364aa.php deleted file mode 100644 index 5d295e8..0000000 --- a/data/cache/PHPStan/ec/c5/ecc5efd85deeb4d2d6a3f8e16cf1e8471d6364aa.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$array";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$flags";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ed/b5/edb5d8770b219cfde9b57e0972632076180c0483.php b/data/cache/PHPStan/ed/b5/edb5d8770b219cfde9b57e0972632076180c0483.php deleted file mode 100644 index c9a23e3..0000000 --- a/data/cache/PHPStan/ed/b5/edb5d8770b219cfde9b57e0972632076180c0483.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"TestCase";}s:10:"isVariadic";b:0;s:13:"parameterName";s:9:"$testCase";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:14:"@phpstan-param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"class-string";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:12:"TMockedClass";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:5:"$type";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/ed/c6/edc69e39a3a4997e1aec459930c238ce0166f05f.php b/data/cache/PHPStan/ed/c6/edc69e39a3a4997e1aec459930c238ce0166f05f.php deleted file mode 100644 index 17646c6..0000000 --- a/data/cache/PHPStan/ed/c6/edc69e39a3a4997e1aec459930c238ce0166f05f.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:4:"@var";s:5:"value";O:47:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode":3:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}s:12:"variableName";s:0:"";s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/f0/89/f089aed06f5659c1cd3a52f134da3b6c3e2d8647.php b/data/cache/PHPStan/f0/89/f089aed06f5659c1cd3a52f134da3b6c3e2d8647.php deleted file mode 100644 index ba89223..0000000 --- a/data/cache/PHPStan/f0/89/f089aed06f5659c1cd3a52f134da3b6c3e2d8647.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:9:"@template";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TInput";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"array";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TInput";}}}s:10:"isVariadic";b:0;s:13:"parameterName";s:6:"$array";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:13:"SplFixedArray";}s:12:"genericTypes";a:1:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TInput";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/f6/95/f695a19e30d9cc6991a7a2a70030e0b065aa3c24.php b/data/cache/PHPStan/f6/95/f695a19e30d9cc6991a7a2a70030e0b065aa3c24.php deleted file mode 100644 index f193049..0000000 --- a/data/cache/PHPStan/f6/95/f695a19e30d9cc6991a7a2a70030e0b065aa3c24.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603543737', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php', - 'modifiedTime' => 1603543737, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/f7/37/f7371664a9c19e9d8b4a1c2b4e105cd6fd35f0c3.php b/data/cache/PHPStan/f7/37/f7371664a9c19e9d8b4a1c2b4e105cd6fd35f0c3.php deleted file mode 100644 index 39a09a2..0000000 --- a/data/cache/PHPStan/f7/37/f7371664a9c19e9d8b4a1c2b4e105cd6fd35f0c3.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TPriority";}s:10:"isVariadic";b:0;s:13:"parameterName";s:10:"$priority1";s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:6:"@param";s:5:"value";O:49:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode":4:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:9:"TPriority";}s:10:"isVariadic";b:0;s:13:"parameterName";s:10:"$priority2";s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:3:"int";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/f7/9a/f79a081e7346c5a2cda149dbaaeef2aea046a252.php b/data/cache/PHPStan/f7/9a/f79a081e7346c5a2cda149dbaaeef2aea046a252.php deleted file mode 100644 index 8596662..0000000 --- a/data/cache/PHPStan/f7/9a/f79a081e7346c5a2cda149dbaaeef2aea046a252.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603543737', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/AnyType.php', - 'modifiedTime' => 1603543737, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/f7/f2/f7f2d3e743b6119918283d2ce2177a81d949b50c.php b/data/cache/PHPStan/f7/f2/f7f2d3e743b6119918283d2ce2177a81d949b50c.php deleted file mode 100644 index 887ceaf..0000000 --- a/data/cache/PHPStan/f7/f2/f7f2d3e743b6119918283d2ce2177a81d949b50c.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:2:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"Pair";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@throws";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:19:"OutOfRangeException";}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/f9/24/f924cd25dc973f55931bea8a8528ec94d3c94041.php b/data/cache/PHPStan/f9/24/f924cd25dc973f55931bea8a8528ec94d3c94041.php deleted file mode 100644 index b3a7647..0000000 --- a/data/cache/PHPStan/f9/24/f924cd25dc973f55931bea8a8528ec94d3c94041.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:1:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:7:"@return";s:5:"value";O:50:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode":2:{s:4:"type";O:43:"PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode":1:{s:5:"types";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"string";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:5:"false";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/f9/f8/f9f8270bfe6983a1f413389b25714a94be6cbaaf.php b/data/cache/PHPStan/f9/f8/f9f8270bfe6983a1f413389b25714a94be6cbaaf.php deleted file mode 100644 index 29c403c..0000000 --- a/data/cache/PHPStan/f9/f8/f9f8270bfe6983a1f413389b25714a94be6cbaaf.php +++ /dev/null @@ -1,30 +0,0 @@ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/OptionalType.php-1603543737', - 'data' => - array ( - 'd1d773aeea36a43f14f06b266a0324f4' => - PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'nameScope' => - PHPStan\Analyser\NameScope::__set_state(array( - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'className' => 'Cubicl\\StructureCheck\\Type\\OptionalType', - 'functionName' => 'check', - 'templateTypeMap' => - PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( - 'types' => - array ( - ), - )), - )), - )), - ), -)); \ No newline at end of file diff --git a/data/cache/PHPStan/fb/dc/fbdcb17d80a93cfa22d6a6b6bcb7554780a3115e.php b/data/cache/PHPStan/fb/dc/fbdcb17d80a93cfa22d6a6b6bcb7554780a3115e.php deleted file mode 100644 index b6786a0..0000000 --- a/data/cache/PHPStan/fb/dc/fbdcb17d80a93cfa22d6a6b6bcb7554780a3115e.php +++ /dev/null @@ -1,6 +0,0 @@ - '0.4.9', - 'data' => 'O:42:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode":1:{s:8:"children";a:3:{i:0;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:4:"TKey";s:5:"bound";N;s:11:"description";s:0:"";}}i:1;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:19:"@template-covariant";s:5:"value";O:52:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode":3:{s:4:"name";s:6:"TValue";s:5:"bound";N;s:11:"description";s:0:"";}}i:2;O:45:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode":2:{s:4:"name";s:8:"@extends";s:5:"value";O:51:"PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ExtendsTagValueNode":2:{s:4:"type";O:45:"PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode":2:{s:4:"type";O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:8:"Iterator";}s:12:"genericTypes";a:2:{i:0;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:4:"TKey";}i:1;O:48:"PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode":1:{s:4:"name";s:6:"TValue";}}}s:11:"description";s:0:"";}}}}', -)); \ No newline at end of file diff --git a/data/cache/PHPStan/fc/c4/fcc423010bc45eca703f6bc521b89cc82bfe0ff2.php b/data/cache/PHPStan/fc/c4/fcc423010bc45eca703f6bc521b89cc82bfe0ff2.php deleted file mode 100644 index 1d9f7e4..0000000 --- a/data/cache/PHPStan/fc/c4/fcc423010bc45eca703f6bc521b89cc82bfe0ff2.php +++ /dev/null @@ -1,13 +0,0 @@ - '1603543737', - 'data' => - array ( - 0 => - array ( - 'filename' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php', - 'modifiedTime' => 1603543737, - ), - ), -)); \ No newline at end of file diff --git a/data/cache/nette.configurator/Container_0680f21d46.php b/data/cache/nette.configurator/Container_0680f21d46.php deleted file mode 100644 index fdd563b..0000000 --- a/data/cache/nette.configurator/Container_0680f21d46.php +++ /dev/null @@ -1,5647 +0,0 @@ - ['018' => true, '0240' => true], - 'phpstan.broker.methodsClassReflectionExtension' => ['069' => true], - 'phpstan.broker.propertiesClassReflectionExtension' => ['070' => true, '073' => true, '0137' => true], - 'phpstan.broker.dynamicFunctionReturnTypeExtension' => [ - '0101' => true, - '0102' => true, - '0103' => true, - '0104' => true, - '0105' => true, - '0107' => true, - '0108' => true, - '0109' => true, - '0110' => true, - '0111' => true, - '0112' => true, - '0113' => true, - '0114' => true, - '0115' => true, - '0116' => true, - '0117' => true, - '0118' => true, - '0119' => true, - '0123' => true, - '0125' => true, - '0126' => true, - '0128' => true, - '0129' => true, - '0130' => true, - '0131' => true, - '0132' => true, - '0133' => true, - '0134' => true, - '0135' => true, - '0136' => true, - '0138' => true, - '0141' => true, - '0142' => true, - '0143' => true, - '0144' => true, - '0145' => true, - '0146' => true, - '0147' => true, - '0148' => true, - '0149' => true, - '0150' => true, - '0151' => true, - '0152' => true, - '0153' => true, - '0154' => true, - '0155' => true, - '0156' => true, - '0177' => true, - '0178' => true, - '0180' => true, - '0181' => true, - '0182' => true, - ], - 'phpstan.typeSpecifier.functionTypeSpecifyingExtension' => [ - '0106' => true, - '0124' => true, - '0139' => true, - '0140' => true, - '0157' => true, - '0158' => true, - '0159' => true, - '0160' => true, - '0161' => true, - '0162' => true, - '0163' => true, - '0164' => true, - '0165' => true, - '0166' => true, - '0167' => true, - '0168' => true, - '0169' => true, - '0170' => true, - '0171' => true, - '0172' => true, - '0173' => true, - '0174' => true, - '0175' => true, - '0176' => true, - '0241' => true, - ], - 'phpstan.broker.dynamicStaticMethodReturnTypeExtension' => ['0120' => true, '0122' => true], - 'phpstan.broker.dynamicMethodReturnTypeExtension' => [ - '0121' => true, - '0127' => true, - '0138' => true, - '0179' => true, - '0244' => true, - '0245' => true, - '0246' => true, - ], - 'phpstan.rules.rule' => [ - '0187' => true, - '0188' => true, - '0189' => true, - '0191' => true, - '0192' => true, - '0193' => true, - '0195' => true, - '0196' => true, - '0197' => true, - '0198' => true, - '0199' => true, - '0200' => true, - '0201' => true, - '0203' => true, - '0204' => true, - '0205' => true, - '0206' => true, - '0207' => true, - '0210' => true, - '0211' => true, - '0212' => true, - '0213' => true, - '0214' => true, - '0215' => true, - '0216' => true, - '0217' => true, - '0218' => true, - '0219' => true, - '0220' => true, - '0221' => true, - '0222' => true, - '0223' => true, - '0227' => true, - '0228' => true, - '0229' => true, - '0230' => true, - '0231' => true, - '0232' => true, - '0233' => true, - '0234' => true, - '0235' => true, - '0236' => true, - 'rules.0' => true, - 'rules.1' => true, - 'rules.10' => true, - 'rules.11' => true, - 'rules.12' => true, - 'rules.13' => true, - 'rules.14' => true, - 'rules.15' => true, - 'rules.16' => true, - 'rules.17' => true, - 'rules.18' => true, - 'rules.19' => true, - 'rules.2' => true, - 'rules.20' => true, - 'rules.21' => true, - 'rules.22' => true, - 'rules.23' => true, - 'rules.24' => true, - 'rules.25' => true, - 'rules.26' => true, - 'rules.27' => true, - 'rules.28' => true, - 'rules.29' => true, - 'rules.3' => true, - 'rules.30' => true, - 'rules.31' => true, - 'rules.32' => true, - 'rules.33' => true, - 'rules.34' => true, - 'rules.35' => true, - 'rules.36' => true, - 'rules.37' => true, - 'rules.38' => true, - 'rules.39' => true, - 'rules.4' => true, - 'rules.40' => true, - 'rules.41' => true, - 'rules.42' => true, - 'rules.43' => true, - 'rules.44' => true, - 'rules.45' => true, - 'rules.46' => true, - 'rules.47' => true, - 'rules.48' => true, - 'rules.49' => true, - 'rules.5' => true, - 'rules.50' => true, - 'rules.51' => true, - 'rules.52' => true, - 'rules.53' => true, - 'rules.54' => true, - 'rules.55' => true, - 'rules.56' => true, - 'rules.57' => true, - 'rules.58' => true, - 'rules.59' => true, - 'rules.6' => true, - 'rules.60' => true, - 'rules.61' => true, - 'rules.62' => true, - 'rules.63' => true, - 'rules.64' => true, - 'rules.65' => true, - 'rules.66' => true, - 'rules.67' => true, - 'rules.68' => true, - 'rules.69' => true, - 'rules.7' => true, - 'rules.70' => true, - 'rules.71' => true, - 'rules.72' => true, - 'rules.73' => true, - 'rules.74' => true, - 'rules.75' => true, - 'rules.76' => true, - 'rules.77' => true, - 'rules.78' => true, - 'rules.79' => true, - 'rules.8' => true, - 'rules.80' => true, - 'rules.81' => true, - 'rules.82' => true, - 'rules.83' => true, - 'rules.84' => true, - 'rules.85' => true, - 'rules.86' => true, - 'rules.87' => true, - 'rules.88' => true, - 'rules.89' => true, - 'rules.9' => true, - 'rules.90' => true, - 'rules.91' => true, - 'rules.92' => true, - 'rules.93' => true, - 'rules.94' => true, - 'rules.95' => true, - 'rules.96' => true, - 'rules.97' => true, - ], - 'phpstan.typeSpecifier.methodTypeSpecifyingExtension' => ['0242' => true], - 'phpstan.typeSpecifier.staticMethodTypeSpecifyingExtension' => ['0243' => true], - ]; - - protected $types = ['container' => '_HumbugBox96739a27ace4\Nette\DI\Container']; - protected $aliases = []; - - protected $wiring = [ - '_HumbugBox96739a27ace4\Nette\DI\Container' => [['container']], - 'PHPStan\Rules\Rule' => [ - 0 => [ - '092', - '0187', - '0188', - '0189', - '0190', - '0191', - '0192', - '0193', - '0194', - '0195', - '0196', - '0197', - '0198', - '0199', - '0200', - '0201', - '0202', - '0203', - '0204', - '0205', - '0206', - '0207', - '0208', - '0209', - '0210', - '0211', - '0212', - '0213', - '0214', - '0215', - '0216', - '0217', - '0218', - '0219', - '0220', - '0221', - '0222', - '0223', - '0224', - '0225', - '0226', - '0227', - '0228', - '0229', - '0230', - '0231', - '0232', - '0233', - '0234', - '0235', - '0236', - '0237', - '0238', - '0239', - ], - 2 => [ - 'rules.0', - 'rules.1', - 'rules.2', - 'rules.3', - 'rules.4', - 'rules.5', - 'rules.6', - 'rules.7', - 'rules.8', - 'rules.9', - 'rules.10', - 'rules.11', - 'rules.12', - 'rules.13', - 'rules.14', - 'rules.15', - 'rules.16', - 'rules.17', - 'rules.18', - 'rules.19', - 'rules.20', - 'rules.21', - 'rules.22', - 'rules.23', - 'rules.24', - 'rules.25', - 'rules.26', - 'rules.27', - 'rules.28', - 'rules.29', - 'rules.30', - 'rules.31', - 'rules.32', - 'rules.33', - 'rules.34', - 'rules.35', - 'rules.36', - 'rules.37', - 'rules.38', - 'rules.39', - 'rules.40', - 'rules.41', - 'rules.42', - 'rules.43', - 'rules.44', - 'rules.45', - 'rules.46', - 'rules.47', - 'rules.48', - 'rules.49', - 'rules.50', - 'rules.51', - 'rules.52', - 'rules.53', - 'rules.54', - 'rules.55', - 'rules.56', - 'rules.57', - 'rules.58', - 'rules.59', - 'rules.60', - 'rules.61', - 'rules.62', - 'rules.63', - 'rules.64', - 'rules.65', - 'rules.66', - 'rules.67', - 'rules.68', - 'rules.69', - 'rules.70', - 'rules.71', - 'rules.72', - 'rules.73', - 'rules.74', - 'rules.75', - 'rules.76', - 'rules.77', - 'rules.78', - 'rules.79', - 'rules.80', - 'rules.81', - 'rules.82', - 'rules.83', - 'rules.84', - 'rules.85', - 'rules.86', - 'rules.87', - 'rules.88', - 'rules.89', - 'rules.90', - 'rules.91', - 'rules.92', - 'rules.93', - 'rules.94', - 'rules.95', - 'rules.96', - 'rules.97', - ], - ], - 'PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule' => [2 => ['rules.0']], - 'PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule' => [2 => ['rules.1']], - 'PHPStan\Rules\Classes\ClassConstantRule' => [2 => ['rules.2']], - 'PHPStan\Rules\Classes\DuplicateDeclarationRule' => [2 => ['rules.3']], - 'PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule' => [2 => ['rules.4']], - 'PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule' => [2 => ['rules.5']], - 'PHPStan\Rules\Classes\ExistingClassInClassExtendsRule' => [2 => ['rules.6']], - 'PHPStan\Rules\Classes\ExistingClassInTraitUseRule' => [2 => ['rules.7']], - 'PHPStan\Rules\Classes\InstantiationRule' => [2 => ['rules.8']], - 'PHPStan\Rules\Classes\NewStaticRule' => [2 => ['rules.9']], - 'PHPStan\Rules\Exceptions\ThrowExpressionRule' => [2 => ['rules.10']], - 'PHPStan\Rules\Functions\CallToFunctionParametersRule' => [2 => ['rules.11']], - 'PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule' => [2 => ['rules.12']], - 'PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule' => [2 => ['rules.13']], - 'PHPStan\Rules\Functions\ExistingClassesInTypehintsRule' => [2 => ['rules.14']], - 'PHPStan\Rules\Functions\InnerFunctionRule' => [2 => ['rules.15']], - 'PHPStan\Rules\Functions\PrintfParametersRule' => [2 => ['rules.16']], - 'PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule' => [2 => ['rules.17']], - 'PHPStan\Rules\Methods\ExistingClassesInTypehintsRule' => [2 => ['rules.18']], - 'PHPStan\Rules\Methods\MissingMethodImplementationRule' => [2 => ['rules.19']], - 'PHPStan\Rules\Properties\AccessPropertiesInAssignRule' => [2 => ['rules.20']], - 'PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule' => [2 => ['rules.21']], - 'PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule' => [2 => ['rules.22']], - 'PHPStan\Rules\Variables\UnsetRule' => [2 => ['rules.23']], - 'PHPStan\Rules\Classes\UnusedConstructorParametersRule' => [2 => ['rules.24']], - 'PHPStan\Rules\Constants\ConstantRule' => [2 => ['rules.25']], - 'PHPStan\Rules\Functions\UnusedClosureUsesRule' => [2 => ['rules.26']], - 'PHPStan\Rules\Variables\VariableCertaintyInIssetRule' => [2 => ['rules.27']], - 'PHPStan\Rules\Cast\EchoRule' => [2 => ['rules.28']], - 'PHPStan\Rules\Cast\InvalidCastRule' => [2 => ['rules.29']], - 'PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule' => [2 => ['rules.30']], - 'PHPStan\Rules\Cast\PrintRule' => [2 => ['rules.31']], - 'PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule' => [2 => ['rules.32']], - 'PHPStan\Rules\Generics\ClassAncestorsRule' => [2 => ['rules.33']], - 'PHPStan\Rules\Generics\ClassTemplateTypeRule' => [2 => ['rules.34']], - 'PHPStan\Rules\Generics\FunctionTemplateTypeRule' => [2 => ['rules.35']], - 'PHPStan\Rules\Generics\FunctionSignatureVarianceRule' => [2 => ['rules.36']], - 'PHPStan\Rules\Generics\InterfaceAncestorsRule' => [2 => ['rules.37']], - 'PHPStan\Rules\Generics\InterfaceTemplateTypeRule' => [2 => ['rules.38']], - 'PHPStan\Rules\Generics\MethodTemplateTypeRule' => [2 => ['rules.39']], - 'PHPStan\Rules\Generics\MethodSignatureVarianceRule' => [2 => ['rules.40']], - 'PHPStan\Rules\Generics\TraitTemplateTypeRule' => [2 => ['rules.41']], - 'PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule' => [2 => ['rules.42']], - 'PHPStan\Rules\Operators\InvalidBinaryOperationRule' => [2 => ['rules.43']], - 'PHPStan\Rules\Operators\InvalidUnaryOperationRule' => [2 => ['rules.44']], - 'PHPStan\Rules\Operators\InvalidComparisonOperationRule' => [2 => ['rules.45']], - 'PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule' => [2 => ['rules.46']], - 'PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule' => [2 => ['rules.47']], - 'PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule' => [2 => ['rules.48']], - 'PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule' => [2 => ['rules.49']], - 'PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule' => [2 => ['rules.50']], - 'PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule' => [2 => ['rules.51']], - 'PHPStan\Rules\Arrays\AppendedArrayItemTypeRule' => [2 => ['rules.52']], - 'PHPStan\Rules\Arrays\IterableInForeachRule' => [2 => ['rules.53']], - 'PHPStan\Rules\Arrays\OffsetAccessAssignmentRule' => [2 => ['rules.54']], - 'PHPStan\Rules\Arrays\OffsetAccessAssignOpRule' => [2 => ['rules.55']], - 'PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule' => [2 => ['rules.56']], - 'PHPStan\Rules\Arrays\UnpackIterableInArrayRule' => [2 => ['rules.57']], - 'PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule' => [2 => ['rules.58']], - 'PHPStan\Rules\Functions\ClosureReturnTypeRule' => [2 => ['rules.59']], - 'PHPStan\Rules\Generators\YieldTypeRule' => [2 => ['rules.60']], - 'PHPStan\Rules\Methods\ReturnTypeRule' => [2 => ['rules.61']], - 'PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule' => [2 => ['rules.62']], - 'PHPStan\Rules\Properties\TypesAssignedToPropertiesRule' => [2 => ['rules.63']], - 'PHPStan\Rules\Variables\ThrowTypeRule' => [2 => ['rules.64']], - 'PHPStan\Rules\Variables\VariableCloningRule' => [2 => ['rules.65']], - 'PHPStan\Rules\Arrays\DeadForeachRule' => [2 => ['rules.66']], - 'PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule' => [2 => ['rules.67']], - 'PHPStan\Rules\DeadCode\NoopRule' => [2 => ['rules.68']], - 'PHPStan\Rules\DeadCode\UnreachableStatementRule' => [2 => ['rules.69']], - 'PHPStan\Rules\Exceptions\DeadCatchRule' => [2 => ['rules.70']], - 'PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule' => [2 => ['rules.71']], - 'PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule' => [2 => ['rules.72']], - 'PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule' => [2 => ['rules.73']], - 'PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule' => [2 => ['rules.74']], - 'PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule' => [2 => ['rules.75']], - 'PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule' => [2 => ['rules.76']], - 'PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule' => [2 => ['rules.77']], - 'PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule' => [2 => ['rules.78']], - 'PHPStan\Rules\Methods\MissingMethodParameterTypehintRule' => [2 => ['rules.79']], - 'PHPStan\Rules\Methods\MissingMethodReturnTypehintRule' => [2 => ['rules.80']], - 'PHPStan\Rules\Properties\MissingPropertyTypehintRule' => [2 => ['rules.81']], - 'PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule' => [2 => ['rules.82']], - 'PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule' => [2 => ['rules.83']], - 'PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule' => [2 => ['rules.84']], - 'PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule' => [2 => ['rules.85']], - 'PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule' => [2 => ['rules.86']], - 'PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule' => [2 => ['rules.87']], - 'PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule' => [2 => ['rules.88']], - 'PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule' => [2 => ['rules.89']], - 'PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule' => [2 => ['rules.90']], - 'PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule' => [2 => ['rules.91']], - 'PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule' => [2 => ['rules.92']], - 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule' => [2 => ['rules.93']], - 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule' => [2 => ['rules.94']], - 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule' => [2 => ['rules.95']], - 'PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule' => [2 => ['rules.96']], - 'PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule' => [2 => ['rules.97']], - 'PhpParser\BuilderFactory' => [['01']], - 'PHPStan\Parser\LexerFactory' => [['02']], - 'PhpParser\NodeVisitorAbstract' => [['03', '04', '039', '050', '055', '060']], - 'PhpParser\NodeVisitor' => [['03', '04', '039', '050', '055', '060']], - 'PhpParser\NodeVisitor\NameResolver' => [['03']], - 'PhpParser\NodeVisitor\NodeConnectingVisitor' => [['04']], - 'PhpParser\PrettyPrinterAbstract' => [['05']], - 'PhpParser\PrettyPrinter\Standard' => [['05']], - 'PHPStan\Broker\AnonymousClassNameHelper' => [['06']], - 'PHPStan\Php\PhpVersion' => [['07']], - 'PHPStan\Php\PhpVersionFactory' => [['08']], - 'PHPStan\Php\PhpVersionFactoryFactory' => [['09']], - 'PHPStan\PhpDocParser\Lexer\Lexer' => [['010']], - 'PHPStan\PhpDocParser\Parser\TypeParser' => [['011']], - 'PHPStan\PhpDocParser\Parser\ConstExprParser' => [['012']], - 'PHPStan\PhpDocParser\Parser\PhpDocParser' => [['013']], - 'PHPStan\PhpDoc\PhpDocInheritanceResolver' => [['014']], - 'PHPStan\PhpDoc\PhpDocNodeResolver' => [['015']], - 'PHPStan\PhpDoc\PhpDocStringResolver' => [['016']], - 'PHPStan\PhpDoc\ConstExprNodeResolver' => [['017']], - 'PHPStan\PhpDoc\TypeNodeResolverExtension' => [['018', '0240']], - 'PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension' => [['018']], - 'PHPStan\PhpDoc\TypeNodeResolver' => [['019']], - 'PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider' => [['020']], - 'PHPStan\PhpDoc\TypeStringResolver' => [['021']], - 'PHPStan\PhpDoc\StubValidator' => [['022']], - 'PHPStan\Analyser\Analyser' => [['023']], - 'PHPStan\Analyser\FileAnalyser' => [['024']], - 'PHPStan\Analyser\IgnoredErrorHelper' => [['025']], - 'PHPStan\Analyser\ScopeFactory' => [['026']], - 'PHPStan\Analyser\LazyScopeFactory' => [['026']], - 'PHPStan\Analyser\NodeScopeResolver' => [['027']], - 'PHPStan\Analyser\ResultCache\ResultCacheManagerFactory' => [['028']], - 'PHPStan\Analyser\ResultCache\ResultCacheClearer' => [['029']], - 'PHPStan\Cache\Cache' => [['030']], - 'PHPStan\Command\AnalyseApplication' => [['031']], - 'PHPStan\Command\AnalyserRunner' => [['032']], - 'PHPStan\Command\FixerApplication' => [['033']], - 'PHPStan\Command\IgnoredRegexValidator' => [['034']], - 'PHPStan\Dependency\DependencyDumper' => [['035']], - 'PHPStan\Dependency\DependencyResolver' => [['036']], - 'PHPStan\Dependency\ExportedNodeFetcher' => [['037']], - 'PHPStan\Dependency\ExportedNodeResolver' => [['038']], - 'PHPStan\Dependency\ExportedNodeVisitor' => [['039']], - 'PHPStan\DependencyInjection\Container' => [['040'], ['041']], - 'PHPStan\DependencyInjection\Nette\NetteContainer' => [['041']], - 'PHPStan\DependencyInjection\DerivativeContainerFactory' => [['042']], - 'PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider' => [['043']], - 'PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider' => [['044']], - 'PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider' => [['045']], - 'PHPStan\File\FileHelper' => [['046']], - 'PHPStan\File\FileExcluder' => [['047']], - 'PHPStan\File\FileFinder' => [['048']], - 'PHPStan\File\FileMonitor' => [['049']], - 'PHPStan\NodeVisitor\StatementOrderVisitor' => [['050']], - 'PHPStan\Parallel\ParallelAnalyser' => [['051']], - 'PHPStan\Parallel\Scheduler' => [['052']], - 'PHPStan\Parser\Parser' => [ - 0 => ['053'], - 2 => [1 => 'currentPhpVersionRichParser', 'currentPhpVersionSimpleParser', 'php8Parser', 'pathRoutingParser'], - ], - 'PHPStan\Parser\CachedParser' => [['053']], - 'PHPStan\Parser\FunctionCallStatementFinder' => [['054']], - 'PHPStan\Parser\NodeChildrenVisitor' => [['055']], - 'PHPStan\Process\CpuCoreCounter' => [['056']], - 'PHPStan\Reflection\FunctionReflectionFactory' => [['057']], - 'PHPStan\Reflection\MethodsClassReflectionExtension' => [['058', '069', '071']], - 'PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension' => [['058']], - 'PHPStan\Reflection\PropertiesClassReflectionExtension' => [['059', '070', '071', '073', '0137']], - 'PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension' => [['059']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor' => [['060']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher' => [['061']], - '_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\SourceLocator' => [ - 0 => ['062'], - 2 => [1 => 'betterReflectionSourceLocator'], - ], - 'PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator' => [['062']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker' => [['063']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory' => [['064']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository' => [['065']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory' => [['066']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory' => [['067']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository' => [['068']], - 'PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension' => [['069']], - 'PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension' => [['070']], - 'PHPStan\Reflection\Php\PhpClassReflectionExtension' => [['071']], - 'PHPStan\Reflection\Php\PhpMethodReflectionFactory' => [['072']], - 'PHPStan\Reflection\BrokerAwareExtension' => [['073', '0178']], - 'PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension' => [['073']], - 'PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider' => [['074']], - 'PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider' => [['075']], - 'PHPStan\Reflection\SignatureMap\SignatureMapParser' => [['076']], - 'PHPStan\Reflection\SignatureMap\SignatureMapProvider' => [['080'], ['077', '078']], - 'PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider' => [['077']], - 'PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider' => [['078']], - 'PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory' => [['079']], - 'PHPStan\Rules\ClassCaseSensitivityCheck' => [['081']], - 'PHPStan\Rules\Comparison\ConstantConditionRuleHelper' => [['082']], - 'PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper' => [['083']], - 'PHPStan\Rules\FunctionCallParametersCheck' => [['084']], - 'PHPStan\Rules\FunctionDefinitionCheck' => [['085']], - 'PHPStan\Rules\FunctionReturnTypeCheck' => [['086']], - 'PHPStan\Rules\Generics\GenericAncestorsCheck' => [['087']], - 'PHPStan\Rules\Generics\GenericObjectTypeCheck' => [['088']], - 'PHPStan\Rules\Generics\TemplateTypeCheck' => [['089']], - 'PHPStan\Rules\Generics\VarianceCheck' => [['090']], - 'PHPStan\Rules\IssetCheck' => [['091']], - 'PHPStan\Rules\Methods\MethodSignatureRule' => [['092']], - 'PHPStan\Rules\MissingTypehintCheck' => [['093']], - 'PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider' => [['094']], - 'PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider' => [['094']], - 'PHPStan\Rules\Properties\PropertyDescriptor' => [['095']], - 'PHPStan\Rules\Properties\PropertyReflectionFinder' => [['096']], - 'PHPStan\Rules\RegistryFactory' => [['097']], - 'PHPStan\Rules\RuleLevelHelper' => [['098']], - 'PHPStan\Rules\UnusedFunctionParametersCheck' => [['099']], - 'PHPStan\Type\FileTypeMapper' => [['0100']], - 'PHPStan\Type\DynamicFunctionReturnTypeExtension' => [ - [ - '0101', - '0102', - '0103', - '0104', - '0105', - '0107', - '0108', - '0109', - '0110', - '0111', - '0112', - '0113', - '0114', - '0115', - '0116', - '0117', - '0118', - '0119', - '0123', - '0125', - '0126', - '0128', - '0129', - '0130', - '0131', - '0132', - '0133', - '0134', - '0135', - '0136', - '0138', - '0141', - '0142', - '0143', - '0144', - '0145', - '0146', - '0147', - '0148', - '0149', - '0150', - '0151', - '0152', - '0153', - '0154', - '0155', - '0156', - '0177', - '0178', - '0180', - '0181', - '0182', - ], - ], - 'PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension' => [['0101']], - 'PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension' => [['0102']], - 'PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension' => [['0103']], - 'PHPStan\Type\Php\ArrayFilterFunctionReturnTypeReturnTypeExtension' => [['0104']], - 'PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension' => [['0105']], - 'PHPStan\Type\FunctionTypeSpecifyingExtension' => [ - [ - '0106', - '0124', - '0139', - '0140', - '0157', - '0158', - '0159', - '0160', - '0161', - '0162', - '0163', - '0164', - '0165', - '0166', - '0167', - '0168', - '0169', - '0170', - '0171', - '0172', - '0173', - '0174', - '0175', - '0176', - '0241', - ], - ], - 'PHPStan\Analyser\TypeSpecifierAwareExtension' => [ - [ - '0106', - '0124', - '0139', - '0140', - '0157', - '0158', - '0159', - '0160', - '0161', - '0162', - '0163', - '0164', - '0165', - '0166', - '0167', - '0168', - '0169', - '0170', - '0171', - '0172', - '0173', - '0174', - '0175', - '0176', - '0178', - '0241', - '0242', - '0243', - ], - ], - 'PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension' => [['0106']], - 'PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension' => [['0107']], - 'PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension' => [['0108']], - 'PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension' => [['0109']], - 'PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension' => [['0110']], - 'PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension' => [['0111']], - 'PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension' => [['0112']], - 'PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension' => [['0113']], - 'PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension' => [['0114']], - 'PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension' => [['0115']], - 'PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension' => [['0116']], - 'PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension' => [['0117']], - 'PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension' => [['0118']], - 'PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension' => [['0119']], - 'PHPStan\Type\DynamicStaticMethodReturnTypeExtension' => [['0120', '0122']], - 'PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension' => [['0120']], - 'PHPStan\Type\DynamicMethodReturnTypeExtension' => [['0121', '0127', '0138', '0179', '0244', '0245', '0246']], - 'PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension' => [['0121']], - 'PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension' => [['0122']], - 'PHPStan\Type\Php\CountFunctionReturnTypeExtension' => [['0123']], - 'PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension' => [['0124']], - 'PHPStan\Type\Php\CurlInitReturnTypeExtension' => [['0125']], - 'PHPStan\Type\Php\DateFunctionReturnTypeExtension' => [['0126']], - 'PHPStan\Type\Php\DsMapDynamicReturnTypeExtension' => [['0127']], - 'PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension' => [['0128']], - 'PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension' => [['0129']], - 'PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension' => [['0130']], - 'PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension' => [['0131']], - 'PHPStan\Type\Php\GetClassDynamicReturnTypeExtension' => [['0132']], - 'PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension' => [['0133']], - 'PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension' => [['0134']], - 'PHPStan\Type\Php\HashHmacFunctionsReturnTypeExtension' => [['0135']], - 'PHPStan\Type\Php\HashFunctionsReturnTypeExtension' => [['0136']], - 'PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension' => [['0137']], - 'PHPStan\Type\Php\StatDynamicReturnTypeExtension' => [['0138']], - 'PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension' => [['0139']], - 'PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension' => [['0140']], - 'PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension' => [['0141']], - 'PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension' => [['0142']], - 'PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension' => [['0143']], - 'PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension' => [['0144']], - 'PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension' => [['0145']], - 'PHPStan\Type\Php\VarExportFunctionDynamicReturnTypeExtension' => [['0146']], - 'PHPStan\Type\Php\MbFunctionsReturnTypeExtension' => [['0147']], - 'PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension' => [['0148']], - 'PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension' => [['0149']], - 'PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension' => [['0150']], - 'PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension' => [['0151']], - 'PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension' => [['0152']], - 'PHPStan\Type\Php\PowFunctionReturnTypeExtension' => [['0153']], - 'PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension' => [['0154']], - 'PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension' => [['0155']], - 'PHPStan\Type\Php\RangeFunctionReturnTypeExtension' => [['0156']], - 'PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension' => [['0157']], - 'PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension' => [['0158']], - 'PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension' => [['0159']], - 'PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension' => [['0160']], - 'PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension' => [['0161']], - 'PHPStan\Type\Php\IsIntFunctionTypeSpecifyingExtension' => [['0162']], - 'PHPStan\Type\Php\IsFloatFunctionTypeSpecifyingExtension' => [['0163']], - 'PHPStan\Type\Php\IsNullFunctionTypeSpecifyingExtension' => [['0164']], - 'PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension' => [['0165']], - 'PHPStan\Type\Php\IsBoolFunctionTypeSpecifyingExtension' => [['0166']], - 'PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension' => [['0167']], - 'PHPStan\Type\Php\IsCountableFunctionTypeSpecifyingExtension' => [['0168']], - 'PHPStan\Type\Php\IsResourceFunctionTypeSpecifyingExtension' => [['0169']], - 'PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension' => [['0170']], - 'PHPStan\Type\Php\IsStringFunctionTypeSpecifyingExtension' => [['0171']], - 'PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension' => [['0172']], - 'PHPStan\Type\Php\IsObjectFunctionTypeSpecifyingExtension' => [['0173']], - 'PHPStan\Type\Php\IsNumericFunctionTypeSpecifyingExtension' => [['0174']], - 'PHPStan\Type\Php\IsScalarFunctionTypeSpecifyingExtension' => [['0175']], - 'PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension' => [['0176']], - 'PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension' => [['0177']], - 'PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension' => [['0178']], - 'PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension' => [['0179']], - 'PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension' => [['0180']], - 'PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension' => [['0181']], - 'PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension' => [['0182']], - 'PHPStan\Analyser\TypeSpecifier' => [['typeSpecifier']], - 'PHPStan\Analyser\TypeSpecifierFactory' => [['typeSpecifierFactory']], - 'PHPStan\File\RelativePathHelper' => [ - 0 => ['relativePathHelper'], - 2 => [1 => 'simpleRelativePathHelper', 'parentDirectoryRelativePathHelper'], - ], - 'PHPStan\File\ParentDirectoryRelativePathHelper' => [2 => ['parentDirectoryRelativePathHelper']], - 'PHPStan\Reflection\ReflectionProvider' => [ - ['reflectionProvider'], - ['broker', 'innerRuntimeReflectionProvider'], - [2 => 'betterReflectionProvider', 'runtimeReflectionProvider'], - ], - 'PHPStan\Broker\Broker' => [['broker']], - 'PHPStan\Broker\BrokerFactory' => [['brokerFactory']], - 'PHPStan\Cache\CacheStorage' => [2 => ['cacheStorage']], - 'PHPStan\Cache\FileCacheStorage' => [2 => ['cacheStorage']], - 'PHPStan\Parser\RichParser' => [2 => ['currentPhpVersionRichParser']], - 'PHPStan\Parser\SimpleParser' => [2 => ['currentPhpVersionSimpleParser', 'php8Parser']], - 'PhpParser\Parser' => [0 => ['phpParserDecorator'], 2 => [1 => 'currentPhpVersionPhpParser', 'php8PhpParser']], - 'PHPStan\Parser\PhpParserDecorator' => [['phpParserDecorator']], - 'PhpParser\Lexer' => [2 => ['currentPhpVersionLexer', 'php8Lexer']], - 'PhpParser\ParserAbstract' => [2 => ['currentPhpVersionPhpParser', 'php8PhpParser']], - 'PhpParser\Parser\Php7' => [2 => ['currentPhpVersionPhpParser', 'php8PhpParser']], - 'PHPStan\Rules\Registry' => [['registry']], - 'PHPStan\PhpDoc\StubPhpDocProvider' => [['stubPhpDocProvider']], - 'PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory' => [['reflectionProviderFactory']], - '_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector' => [ - 2 => ['betterReflectionClassReflector', 'nodeScopeResolverClassReflector'], - ], - '_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\Reflector' => [ - 2 => [ - 'betterReflectionClassReflector', - 'nodeScopeResolverClassReflector', - 'betterReflectionFunctionReflector', - 'betterReflectionConstantReflector', - ], - ], - 'PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector' => [ - 2 => ['betterReflectionClassReflector', 'nodeScopeResolverClassReflector'], - ], - '_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector' => [ - 2 => ['betterReflectionFunctionReflector'], - ], - 'PHPStan\Reflection\BetterReflection\Reflector\MemoizingFunctionReflector' => [ - 2 => ['betterReflectionFunctionReflector'], - ], - '_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector' => [ - 2 => ['betterReflectionConstantReflector'], - ], - 'PHPStan\Reflection\BetterReflection\Reflector\MemoizingConstantReflector' => [ - 2 => ['betterReflectionConstantReflector'], - ], - 'PHPStan\Reflection\BetterReflection\BetterReflectionProvider' => [2 => ['betterReflectionProvider']], - 'Hoa\Compiler\Llk\Parser' => [['regexParser']], - 'Hoa\File\File' => [['regexGrammarStream']], - 'Hoa\File\Generic' => [['regexGrammarStream']], - 'Hoa\Stream\Stream' => [['regexGrammarStream']], - 'Hoa\Stream\IStream\Stream' => [['regexGrammarStream']], - 'Hoa\Event\Listenable' => [['regexGrammarStream']], - 'Hoa\Event\Source' => [['regexGrammarStream']], - 'Hoa\Stream\IStream\Pathable' => [['regexGrammarStream']], - 'Hoa\Stream\IStream\Statable' => [['regexGrammarStream']], - 'Hoa\Stream\IStream\Touchable' => [['regexGrammarStream']], - 'Hoa\Stream\IStream\Bufferable' => [['regexGrammarStream']], - 'Hoa\Stream\IStream\Lockable' => [['regexGrammarStream']], - 'Hoa\Stream\IStream\Pointable' => [['regexGrammarStream']], - 'Hoa\Stream\IStream\In' => [['regexGrammarStream']], - 'Hoa\File\Read' => [['regexGrammarStream']], - 'PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider' => [2 => ['runtimeReflectionProvider']], - 'PHPStan\Reflection\Runtime\RuntimeReflectionProvider' => [['innerRuntimeReflectionProvider']], - 'PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory' => [['0183']], - 'PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory' => [['0184']], - '_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\SourceStubber' => [ - 1 => ['0185', '0186'], - ], - '_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber' => [ - ['0185'], - ], - '_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber' => [['0186']], - 'PhpParser\Lexer\Emulative' => [2 => ['php8Lexer']], - 'PHPStan\Parser\PathRoutingParser' => [2 => ['pathRoutingParser']], - 'PHPStan\Command\ErrorFormatter\ErrorFormatter' => [ - [ - 'errorFormatter.raw', - 'errorFormatter.baselineNeon', - 'errorFormatter.table', - 'errorFormatter.checkstyle', - 'errorFormatter.json', - 'errorFormatter.junit', - 'errorFormatter.prettyJson', - 'errorFormatter.gitlab', - 'errorFormatter.github', - 'errorFormatter.teamcity', - ], - ], - 'PHPStan\Command\ErrorFormatter\RawErrorFormatter' => [['errorFormatter.raw']], - 'PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter' => [['errorFormatter.baselineNeon']], - 'PHPStan\Command\ErrorFormatter\TableErrorFormatter' => [['errorFormatter.table']], - 'PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter' => [['errorFormatter.checkstyle']], - 'PHPStan\Command\ErrorFormatter\JsonErrorFormatter' => [['errorFormatter.json', 'errorFormatter.prettyJson']], - 'PHPStan\Command\ErrorFormatter\JunitErrorFormatter' => [['errorFormatter.junit']], - 'PHPStan\Command\ErrorFormatter\GitlabErrorFormatter' => [['errorFormatter.gitlab']], - 'PHPStan\Command\ErrorFormatter\GithubErrorFormatter' => [['errorFormatter.github']], - 'PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter' => [['errorFormatter.teamcity']], - 'PHPStan\Rules\Classes\ExistingClassInInstanceOfRule' => [['0187']], - 'PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule' => [['0188']], - 'PHPStan\Rules\Functions\CallToNonExistentFunctionRule' => [['0189']], - 'PHPStan\Rules\Functions\ClosureUsesThisRule' => [['0190']], - 'PHPStan\Rules\Methods\CallMethodsRule' => [['0191']], - 'PHPStan\Rules\Methods\CallStaticMethodsRule' => [['0192']], - 'PHPStan\Rules\Methods\OverridingMethodRule' => [['0193']], - 'PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule' => [['0194']], - 'PHPStan\Rules\Missing\MissingReturnRule' => [['0195']], - 'PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule' => [['0196']], - 'PHPStan\Rules\Namespaces\ExistingNamesInUseRule' => [['0197']], - 'PHPStan\Rules\Operators\InvalidIncDecOperationRule' => [['0198']], - 'PHPStan\Rules\Properties\AccessPropertiesRule' => [['0199']], - 'PHPStan\Rules\Properties\AccessStaticPropertiesRule' => [['0200']], - 'PHPStan\Rules\Properties\ExistingClassesInPropertiesRule' => [['0201']], - 'PHPStan\Rules\Properties\UninitializedPropertyRule' => [['0202']], - 'PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule' => [['0203']], - 'PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule' => [['0204']], - 'PHPStan\Rules\Variables\CompactVariablesRule' => [['0205']], - 'PHPStan\Rules\Variables\DefinedVariableRule' => [['0206']], - 'PHPStan\Rules\Regexp\RegularExpressionPatternRule' => [['0207']], - 'PHPStan\Rules\Whitespace\FileWhitespaceRule' => [['0208']], - 'PHPStan\Rules\Variables\VariableCertaintyNullCoalesceRule' => [['0209']], - 'PHPStan\Rules\Classes\MixinRule' => [['0210']], - 'PHPStan\Rules\Functions\CallCallablesRule' => [['0211']], - 'PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule' => [['0212']], - 'PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule' => [['0213']], - 'PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule' => [['0214']], - 'PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule' => [['0215']], - 'PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule' => [['0216']], - 'PHPStan\Rules\Functions\ReturnTypeRule' => [['0217']], - 'PHPStan\Rules\Generators\YieldFromTypeRule' => [['0218']], - 'PHPStan\Rules\Generators\YieldInGeneratorRule' => [['0219']], - 'PHPStan\Rules\Classes\ImpossibleInstanceOfRule' => [['0220']], - 'PHPStan\Rules\Comparison\BooleanAndConstantConditionRule' => [['0221']], - 'PHPStan\Rules\Comparison\BooleanOrConstantConditionRule' => [['0222']], - 'PHPStan\Rules\Comparison\BooleanNotConstantConditionRule' => [['0223']], - 'PHPStan\Rules\DeadCode\UnusedPrivateConstantRule' => [['0224']], - 'PHPStan\Rules\DeadCode\UnusedPrivateMethodRule' => [['0225']], - 'PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule' => [['0226']], - 'PHPStan\Rules\Comparison\ElseIfConstantConditionRule' => [['0227']], - 'PHPStan\Rules\Comparison\IfConstantConditionRule' => [['0228']], - 'PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule' => [['0229']], - 'PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule' => [['0230']], - 'PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule' => [['0231']], - 'PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule' => [['0232']], - 'PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule' => [['0233']], - 'PHPStan\Rules\Comparison\UnreachableIfBranchesRule' => [['0234']], - 'PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule' => [['0235']], - 'PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule' => [['0236']], - 'PHPStan\Rules\Variables\IssetRule' => [['0237']], - 'PHPStan\Rules\Variables\NullCoalesceRule' => [['0238']], - 'PHPStan\Rules\Functions\RandomIntParametersRule' => [['0239']], - 'PHPStan\PhpDoc\TypeNodeResolverAwareExtension' => [['0240']], - 'PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension' => [['0240']], - 'PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension' => [['0241']], - 'PHPStan\Type\MethodTypeSpecifyingExtension' => [['0242']], - 'PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension' => [['0242']], - 'PHPStan\Type\StaticMethodTypeSpecifyingExtension' => [['0243']], - 'PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension' => [['0243']], - 'PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension' => [['0244']], - 'PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension' => [['0245']], - 'PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension' => [['0246']], - 'PHPStan\Rules\Deprecations\DeprecatedClassHelper' => [['0247']], - ]; - - - public function __construct(array $params = []) - { - parent::__construct($params); - $this->parameters += [ - 'bootstrap' => null, - 'bootstrapFiles' => [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/runtime/ReflectionUnionType.php', - ], - 'excludes_analyse' => [], - 'autoload_directories' => [], - 'autoload_files' => [], - 'level' => 'max', - 'paths' => ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], - 'featureToggles' => [ - 'bleedingEdge' => false, - 'disableRuntimeReflectionProvider' => false, - 'closureUsesThis' => false, - 'randomIntParameters' => false, - 'nullCoalesce' => false, - 'fileWhitespace' => false, - 'unusedClassElements' => false, - 'readComposerPhpVersion' => false, - ], - 'fileExtensions' => ['php'], - 'checkAlwaysTrueCheckTypeFunctionCall' => false, - 'checkAlwaysTrueInstanceof' => false, - 'checkAlwaysTrueStrictComparison' => false, - 'checkClassCaseSensitivity' => true, - 'checkExplicitMixed' => false, - 'checkFunctionArgumentTypes' => true, - 'checkFunctionNameCase' => false, - 'checkGenericClassInNonGenericObjectType' => true, - 'checkInternalClassCaseSensitivity' => false, - 'checkMissingIterableValueType' => true, - 'checkMissingVarTagTypehint' => true, - 'checkArgumentsPassedByReference' => true, - 'checkMaybeUndefinedVariables' => true, - 'checkNullables' => true, - 'checkThisOnly' => false, - 'checkUnionTypes' => true, - 'checkExplicitMixedMissingReturn' => false, - 'checkPhpDocMissingReturn' => true, - 'checkPhpDocMethodSignatures' => true, - 'checkExtraArguments' => true, - 'checkMissingClosureNativeReturnTypehintRule' => false, - 'checkMissingTypehints' => true, - 'checkTooWideReturnTypesInProtectedAndPublicMethods' => false, - 'checkUninitializedProperties' => false, - 'inferPrivatePropertyTypeFromConstructor' => false, - 'reportMaybes' => true, - 'reportMaybesInMethodSignatures' => false, - 'reportStaticMethodSignatures' => false, - 'mixinExcludeClasses' => [], - 'scanFiles' => [], - 'scanDirectories' => [], - 'parallel' => [ - 'jobSize' => 20, - 'processTimeout' => 60.0, - 'maximumNumberOfProcesses' => 32, - 'minimumNumberOfJobsPerProcess' => 2, - 'buffer' => 134217728, - ], - 'phpVersion' => null, - 'polluteScopeWithLoopInitialAssignments' => true, - 'polluteScopeWithAlwaysIterableForeach' => true, - 'polluteCatchScopeWithTryAssignments' => false, - 'propertyAlwaysWrittenTags' => [], - 'propertyAlwaysReadTags' => [], - 'additionalConstructors' => ['PHPUnit\Framework\TestCase::setUp'], - 'treatPhpDocTypesAsCertain' => true, - 'tipsOfTheDay' => true, - 'reportMagicMethods' => true, - 'reportMagicProperties' => true, - 'ignoreErrors' => [], - 'internalErrorsCountLimit' => 50, - 'cache' => ['nodesByFileCountMax' => 1024, 'nodesByStringCountMax' => 1024], - 'reportUnmatchedIgnoredErrors' => true, - 'scopeClass' => 'PHPStan\Analyser\MutatingScope', - 'typeAliases' => [], - 'universalObjectCratesClasses' => ['stdClass'], - 'stubFiles' => [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', - ], - 'earlyTerminatingMethodCalls' => ['PHPUnit\Framework\Assert' => ['fail', 'markTestIncomplete', 'markTestSkipped']], - 'earlyTerminatingFunctionCalls' => [], - 'memoryLimitFile' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/.memory_limit', - 'tempResultCachePath' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCaches', - 'staticReflectionClassNamePatterns' => ['#^PhpParser\\\#', '#^PHPStan\\\#', '#^Hoa\\\#'], - 'dynamicConstantNames' => [ - 'ICONV_IMPL', - 'LIBXML_VERSION', - 'LIBXML_DOTTED_VERSION', - 'PHP_VERSION', - 'PHP_MAJOR_VERSION', - 'PHP_MINOR_VERSION', - 'PHP_RELEASE_VERSION', - 'PHP_VERSION_ID', - 'PHP_EXTRA_VERSION', - 'PHP_ZTS', - 'PHP_DEBUG', - 'PHP_MAXPATHLEN', - 'PHP_OS', - 'PHP_OS_FAMILY', - 'PHP_SAPI', - 'PHP_EOL', - 'PHP_INT_MAX', - 'PHP_INT_MIN', - 'PHP_INT_SIZE', - 'PHP_FLOAT_DIG', - 'PHP_FLOAT_EPSILON', - 'PHP_FLOAT_MIN', - 'PHP_FLOAT_MAX', - 'DEFAULT_INCLUDE_PATH', - 'PEAR_INSTALL_DIR', - 'PEAR_EXTENSION_DIR', - 'PHP_EXTENSION_DIR', - 'PHP_PREFIX', - 'PHP_BINDIR', - 'PHP_BINARY', - 'PHP_MANDIR', - 'PHP_LIBDIR', - 'PHP_DATADIR', - 'PHP_SYSCONFDIR', - 'PHP_LOCALSTATEDIR', - 'PHP_CONFIG_FILE_PATH', - 'PHP_CONFIG_FILE_SCAN_DIR', - 'PHP_SHLIB_SUFFIX', - 'PHP_FD_SETSIZE', - ], - 'customRulesetUsed' => false, - 'missingClosureNativeReturnCheckObjectTypehint' => false, - 'tmpDir' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data', - 'debugMode' => true, - 'productionMode' => false, - 'tempDir' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data', - 'rootDir' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan', - 'currentWorkingDirectory' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - 'cliArgumentsVariablesRegistered' => true, - 'additionalConfigFiles' => [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.levelmax.neon', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', - ], - 'analysedPaths' => ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], - 'composerAutoloaderProjectPaths' => [ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - ], - 'analysedPathsFromConfig' => [], - 'allCustomConfigFiles' => [ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon', - ], - 'usedLevel' => 'max', - 'cliAutoloadFile' => null, - 'fixerTmpDir' => '/tmp/phpstan-fixer', - 'singleReflectionFile' => null, - '__parametersSchema' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ - 'bootstrap' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string|null', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'bootstrapFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'excludes_analyse' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'autoload_directories' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'autoload_files' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'level' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\AnyOf', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00set" => [ - \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00castTo" => null, - ]), - 'paths' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'featureToggles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ - 'bleedingEdge' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'disableRuntimeReflectionProvider' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'closureUsesThis' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'randomIntParameters' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'nullCoalesce' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'fileWhitespace' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'unusedClassElements' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'readComposerPhpVersion' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', - ]), - 'fileExtensions' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkAlwaysTrueCheckTypeFunctionCall' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkAlwaysTrueInstanceof' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkAlwaysTrueStrictComparison' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkClassCaseSensitivity' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkExplicitMixed' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkFunctionArgumentTypes' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkFunctionNameCase' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkGenericClassInNonGenericObjectType' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkInternalClassCaseSensitivity' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkMissingIterableValueType' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkMissingVarTagTypehint' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkArgumentsPassedByReference' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkMaybeUndefinedVariables' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkNullables' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkThisOnly' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkUnionTypes' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkExplicitMixedMissingReturn' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkPhpDocMissingReturn' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkPhpDocMethodSignatures' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkExtraArguments' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkMissingClosureNativeReturnTypehintRule' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkMissingTypehints' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkTooWideReturnTypesInProtectedAndPublicMethods' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkUninitializedProperties' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'inferPrivatePropertyTypeFromConstructor' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'tipsOfTheDay' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'reportMaybes' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'reportMaybesInMethodSignatures' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'reportStaticMethodSignatures' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'parallel' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ - 'jobSize' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'processTimeout' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'float', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'maximumNumberOfProcesses' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'minimumNumberOfJobsPerProcess' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'buffer' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', - ]), - 'phpVersion' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\AnyOf', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00set" => [ - \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [70100.0, 80000.0], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00castTo" => null, - ]), - 'polluteScopeWithLoopInitialAssignments' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'polluteScopeWithAlwaysIterableForeach' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'polluteCatchScopeWithTryAssignments' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'propertyAlwaysWrittenTags' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'propertyAlwaysReadTags' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'additionalConstructors' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'treatPhpDocTypesAsCertain' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'reportMagicMethods' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'reportMagicProperties' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'ignoreErrors' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\AnyOf', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00set" => [ - \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ - 'message' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ - null, - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'path' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ - null, - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', - ]), - \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ - 'message' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ - null, - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'count' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ - null, - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'path' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ - null, - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', - ]), - \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ - 'message' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ - null, - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'paths' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ - null, - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ - null, - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', - ]), - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'internalErrorsCountLimit' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'cache' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ - 'nodesByFileCountMax' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'nodesByStringCountMax' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', - ]), - 'reportUnmatchedIgnoredErrors' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'scopeClass' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'typeAliases' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'array', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'universalObjectCratesClasses' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'stubFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'earlyTerminatingMethodCalls' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'array', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'earlyTerminatingFunctionCalls' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'memoryLimitFile' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'tempResultCachePath' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'staticReflectionClassNamePatterns' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'dynamicConstantNames' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'customRulesetUsed' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'rootDir' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'tmpDir' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'currentWorkingDirectory' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'cliArgumentsVariablesRegistered' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'mixinExcludeClasses' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'scanFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'scanDirectories' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'fixerTmpDir' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'debugMode' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'productionMode' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'tempDir' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'additionalConfigFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'allCustomConfigFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'analysedPaths' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'composerAutoloaderProjectPaths' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'analysedPathsFromConfig' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'usedLevel' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'cliAutoloadFile' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string|null', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'singleReflectionFile' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string|null', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'missingClosureNativeReturnCheckObjectTypehint' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - '__parametersSchema' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => '_HumbugBox96739a27ace4\Nette\Schema\Schema', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', - ]), - ]; - } - - - public function createService01(): PhpParser\BuilderFactory - { - return new PhpParser\BuilderFactory; - } - - - public function createService02(): PHPStan\Parser\LexerFactory - { - return new PHPStan\Parser\LexerFactory($this->getService('07')); - } - - - public function createService03(): PhpParser\NodeVisitor\NameResolver - { - return new PhpParser\NodeVisitor\NameResolver; - } - - - public function createService04(): PhpParser\NodeVisitor\NodeConnectingVisitor - { - return new PhpParser\NodeVisitor\NodeConnectingVisitor; - } - - - public function createService05(): PhpParser\PrettyPrinter\Standard - { - return new PhpParser\PrettyPrinter\Standard; - } - - - public function createService06(): PHPStan\Broker\AnonymousClassNameHelper - { - return new PHPStan\Broker\AnonymousClassNameHelper($this->getService('046'), $this->getService('simpleRelativePathHelper')); - } - - - public function createService07(): PHPStan\Php\PhpVersion - { - return $this->getService('08')->create(); - } - - - public function createService08(): PHPStan\Php\PhpVersionFactory - { - return $this->getService('09')->create(); - } - - - public function createService09(): PHPStan\Php\PhpVersionFactoryFactory - { - return new PHPStan\Php\PhpVersionFactoryFactory( - null, - false, - [ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - ] - ); - } - - - public function createService010(): PHPStan\PhpDocParser\Lexer\Lexer - { - return new PHPStan\PhpDocParser\Lexer\Lexer; - } - - - public function createService011(): PHPStan\PhpDocParser\Parser\TypeParser - { - return new PHPStan\PhpDocParser\Parser\TypeParser($this->getService('012')); - } - - - public function createService012(): PHPStan\PhpDocParser\Parser\ConstExprParser - { - return new PHPStan\PhpDocParser\Parser\ConstExprParser; - } - - - public function createService013(): PHPStan\PhpDocParser\Parser\PhpDocParser - { - return new PHPStan\PhpDocParser\Parser\PhpDocParser($this->getService('011'), $this->getService('012')); - } - - - public function createService014(): PHPStan\PhpDoc\PhpDocInheritanceResolver - { - return new PHPStan\PhpDoc\PhpDocInheritanceResolver($this->getService('0100')); - } - - - public function createService015(): PHPStan\PhpDoc\PhpDocNodeResolver - { - return new PHPStan\PhpDoc\PhpDocNodeResolver($this->getService('019'), $this->getService('017')); - } - - - public function createService016(): PHPStan\PhpDoc\PhpDocStringResolver - { - return new PHPStan\PhpDoc\PhpDocStringResolver($this->getService('010'), $this->getService('013')); - } - - - public function createService017(): PHPStan\PhpDoc\ConstExprNodeResolver - { - return new PHPStan\PhpDoc\ConstExprNodeResolver; - } - - - public function createService018(): PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension - { - return new PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension( - $this->getService('021'), - $this->getService('reflectionProvider'), - [] - ); - } - - - public function createService019(): PHPStan\PhpDoc\TypeNodeResolver - { - return new PHPStan\PhpDoc\TypeNodeResolver($this->getService('020'), $this->getService('040')); - } - - - public function createService020(): PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider - { - return new PHPStan\PhpDoc\LazyTypeNodeResolverExtensionRegistryProvider($this->getService('040')); - } - - - public function createService021(): PHPStan\PhpDoc\TypeStringResolver - { - return new PHPStan\PhpDoc\TypeStringResolver($this->getService('010'), $this->getService('011'), $this->getService('019')); - } - - - public function createService022(): PHPStan\PhpDoc\StubValidator - { - return new PHPStan\PhpDoc\StubValidator( - [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', - ], - $this->getService('042') - ); - } - - - public function createService023(): PHPStan\Analyser\Analyser - { - return new PHPStan\Analyser\Analyser($this->getService('024'), $this->getService('registry'), $this->getService('027'), 50); - } - - - public function createService024(): PHPStan\Analyser\FileAnalyser - { - return new PHPStan\Analyser\FileAnalyser( - $this->getService('026'), - $this->getService('027'), - $this->getService('053'), - $this->getService('036'), - true - ); - } - - - public function createService025(): PHPStan\Analyser\IgnoredErrorHelper - { - return new PHPStan\Analyser\IgnoredErrorHelper($this->getService('034'), $this->getService('046'), [], true); - } - - - public function createService026(): PHPStan\Analyser\LazyScopeFactory - { - return new PHPStan\Analyser\LazyScopeFactory('PHPStan\Analyser\MutatingScope', $this->getService('040')); - } - - - public function createService027(): PHPStan\Analyser\NodeScopeResolver - { - return new PHPStan\Analyser\NodeScopeResolver( - $this->getService('reflectionProvider'), - $this->getService('nodeScopeResolverClassReflector'), - $this->getService('043'), - $this->getService('053'), - $this->getService('0100'), - $this->getService('07'), - $this->getService('014'), - $this->getService('046'), - $this->getService('typeSpecifier'), - true, - false, - true, - ['PHPUnit\Framework\Assert' => ['fail', 'markTestIncomplete', 'markTestSkipped']], - [] - ); - } - - - public function createService028(): PHPStan\Analyser\ResultCache\ResultCacheManagerFactory - { - return new class ($this) implements PHPStan\Analyser\ResultCache\ResultCacheManagerFactory { - private $container; - - - public function __construct(Container_0680f21d46 $container) - { - $this->container = $container; - } - - - public function create(array $fileReplacements): PHPStan\Analyser\ResultCache\ResultCacheManager - { - return new PHPStan\Analyser\ResultCache\ResultCacheManager( - $this->container->getService('037'), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCache.php', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCaches', - [ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon', - ], - ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], - [ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - ], - [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', - ], - 'max', - null, - $fileReplacements - ); - } - }; - } - - - public function createService029(): PHPStan\Analyser\ResultCache\ResultCacheClearer - { - return new PHPStan\Analyser\ResultCache\ResultCacheClearer( - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCache.php', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCaches' - ); - } - - - public function createService030(): PHPStan\Cache\Cache - { - return new PHPStan\Cache\Cache($this->getService('cacheStorage')); - } - - - public function createService031(): PHPStan\Command\AnalyseApplication - { - return new PHPStan\Command\AnalyseApplication( - $this->getService('032'), - $this->getService('022'), - $this->getService('028'), - $this->getService('025'), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/.memory_limit', - 50 - ); - } - - - public function createService032(): PHPStan\Command\AnalyserRunner - { - return new PHPStan\Command\AnalyserRunner( - $this->getService('052'), - $this->getService('023'), - $this->getService('051'), - $this->getService('056') - ); - } - - - public function createService033(): PHPStan\Command\FixerApplication - { - return new PHPStan\Command\FixerApplication( - $this->getService('049'), - $this->getService('028'), - $this->getService('029'), - $this->getService('025'), - $this->getService('056'), - $this->getService('052'), - ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - '/tmp/phpstan-fixer', - 32 - ); - } - - - public function createService034(): PHPStan\Command\IgnoredRegexValidator - { - return new PHPStan\Command\IgnoredRegexValidator($this->getService('regexParser'), $this->getService('021')); - } - - - public function createService035(): PHPStan\Dependency\DependencyDumper - { - return new PHPStan\Dependency\DependencyDumper( - $this->getService('036'), - $this->getService('027'), - $this->getService('053'), - $this->getService('026'), - $this->getService('048') - ); - } - - - public function createService036(): PHPStan\Dependency\DependencyResolver - { - return new PHPStan\Dependency\DependencyResolver( - $this->getService('046'), - $this->getService('reflectionProvider'), - $this->getService('038') - ); - } - - - public function createService037(): PHPStan\Dependency\ExportedNodeFetcher - { - return new PHPStan\Dependency\ExportedNodeFetcher($this->getService('053'), $this->getService('039')); - } - - - public function createService038(): PHPStan\Dependency\ExportedNodeResolver - { - return new PHPStan\Dependency\ExportedNodeResolver($this->getService('0100'), $this->getService('05')); - } - - - public function createService039(): PHPStan\Dependency\ExportedNodeVisitor - { - return new PHPStan\Dependency\ExportedNodeVisitor($this->getService('038')); - } - - - public function createService040(): PHPStan\DependencyInjection\Container - { - return new PHPStan\DependencyInjection\MemoizingContainer($this->getService('041')); - } - - - public function createService041(): PHPStan\DependencyInjection\Nette\NetteContainer - { - return new PHPStan\DependencyInjection\Nette\NetteContainer($this); - } - - - public function createService042(): PHPStan\DependencyInjection\DerivativeContainerFactory - { - return new PHPStan\DependencyInjection\DerivativeContainerFactory( - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data', - [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.levelmax.neon', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', - ], - ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], - [ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - ], - [], - [ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon', - ], - 'max' - ); - } - - - public function createService043(): PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider - { - return new PHPStan\DependencyInjection\Reflection\LazyClassReflectionExtensionRegistryProvider($this->getService('040')); - } - - - public function createService044(): PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider - { - return new PHPStan\DependencyInjection\Type\LazyDynamicReturnTypeExtensionRegistryProvider($this->getService('040')); - } - - - public function createService045(): PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider - { - return new PHPStan\DependencyInjection\Type\LazyOperatorTypeSpecifyingExtensionRegistryProvider($this->getService('040')); - } - - - public function createService046(): PHPStan\File\FileHelper - { - return new PHPStan\File\FileHelper('/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check'); - } - - - public function createService047(): PHPStan\File\FileExcluder - { - return new PHPStan\File\FileExcluder( - $this->getService('046'), - [], - [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', - ] - ); - } - - - public function createService048(): PHPStan\File\FileFinder - { - return new PHPStan\File\FileFinder($this->getService('047'), $this->getService('046'), ['php']); - } - - - public function createService049(): PHPStan\File\FileMonitor - { - return new PHPStan\File\FileMonitor($this->getService('048')); - } - - - public function createService050(): PHPStan\NodeVisitor\StatementOrderVisitor - { - return new PHPStan\NodeVisitor\StatementOrderVisitor; - } - - - public function createService051(): PHPStan\Parallel\ParallelAnalyser - { - return new PHPStan\Parallel\ParallelAnalyser(50, 60.0, 134217728); - } - - - public function createService052(): PHPStan\Parallel\Scheduler - { - return new PHPStan\Parallel\Scheduler(20, 32, 2); - } - - - public function createService053(): PHPStan\Parser\CachedParser - { - return new PHPStan\Parser\CachedParser($this->getService('pathRoutingParser'), 1024); - } - - - public function createService054(): PHPStan\Parser\FunctionCallStatementFinder - { - return new PHPStan\Parser\FunctionCallStatementFinder; - } - - - public function createService055(): PHPStan\Parser\NodeChildrenVisitor - { - return new PHPStan\Parser\NodeChildrenVisitor; - } - - - public function createService056(): PHPStan\Process\CpuCoreCounter - { - return new PHPStan\Process\CpuCoreCounter; - } - - - public function createService057(): PHPStan\Reflection\FunctionReflectionFactory - { - return new class ($this) implements PHPStan\Reflection\FunctionReflectionFactory { - private $container; - - - public function __construct(Container_0680f21d46 $container) - { - $this->container = $container; - } - - - public function create( - ReflectionFunction $reflection, - PHPStan\Type\Generic\TemplateTypeMap $templateTypeMap, - array $phpDocParameterTypes, - ?PHPStan\Type\Type $phpDocReturnType, - ?PHPStan\Type\Type $phpDocThrowType, - ?string $deprecatedDescription, - bool $isDeprecated, - bool $isInternal, - bool $isFinal, - $filename - ): PHPStan\Reflection\Php\PhpFunctionReflection { - return new PHPStan\Reflection\Php\PhpFunctionReflection( - $reflection, - $this->container->getService('053'), - $this->container->getService('054'), - $this->container->getService('030'), - $templateTypeMap, - $phpDocParameterTypes, - $phpDocReturnType, - $phpDocThrowType, - $deprecatedDescription, - $isDeprecated, - $isInternal, - $isFinal, - $filename - ); - } - }; - } - - - public function createService058(): PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension - { - return new PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension; - } - - - public function createService059(): PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension - { - return new PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension; - } - - - public function createService060(): PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor; - } - - - public function createService061(): PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher( - $this->getService('060'), - $this->getService('053') - ); - } - - - public function createService062(): PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator($this->getService('061')); - } - - - public function createService063(): PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker( - $this->getService('065'), - $this->getService('068'), - $this->getService('066') - ); - } - - - public function createService064(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory - { - return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory { - private $container; - - - public function __construct(Container_0680f21d46 $container) - { - $this->container = $container; - } - - - public function create(string $directory): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocator - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocator( - $this->container->getService('061'), - $this->container->getService('048'), - $directory - ); - } - }; - } - - - public function createService065(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository($this->getService('064')); - } - - - public function createService066(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory - { - return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory { - private $container; - - - public function __construct(Container_0680f21d46 $container) - { - $this->container = $container; - } - - - public function create(_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\Composer\Psr\PsrAutoloaderMapping $mapping): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator($mapping, $this->container->getService('068')); - } - }; - } - - - public function createService067(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory - { - return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory { - private $container; - - - public function __construct(Container_0680f21d46 $container) - { - $this->container = $container; - } - - - public function create(string $fileName): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator( - $this->container->getService('061'), - $fileName - ); - } - }; - } - - - public function createService068(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository($this->getService('067')); - } - - - public function createService069(): PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension - { - return new PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension([]); - } - - - public function createService070(): PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension - { - return new PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension([]); - } - - - public function createService071(): PHPStan\Reflection\Php\PhpClassReflectionExtension - { - return new PHPStan\Reflection\Php\PhpClassReflectionExtension( - $this->getService('026'), - $this->getService('027'), - $this->getService('072'), - $this->getService('014'), - $this->getService('058'), - $this->getService('059'), - $this->getService('080'), - $this->getService('053'), - $this->getService('stubPhpDocProvider'), - $this->getService('reflectionProvider'), - false, - ['stdClass'] - ); - } - - - public function createService072(): PHPStan\Reflection\Php\PhpMethodReflectionFactory - { - return new class ($this) implements PHPStan\Reflection\Php\PhpMethodReflectionFactory { - private $container; - - - public function __construct(Container_0680f21d46 $container) - { - $this->container = $container; - } - - - public function create( - PHPStan\Reflection\ClassReflection $declaringClass, - ?PHPStan\Reflection\ClassReflection $declaringTrait, - PHPStan\Reflection\Php\BuiltinMethodReflection $reflection, - PHPStan\Type\Generic\TemplateTypeMap $templateTypeMap, - array $phpDocParameterTypes, - ?PHPStan\Type\Type $phpDocReturnType, - ?PHPStan\Type\Type $phpDocThrowType, - ?string $deprecatedDescription, - bool $isDeprecated, - bool $isInternal, - bool $isFinal, - ?string $stubPhpDocString - ): PHPStan\Reflection\Php\PhpMethodReflection { - return new PHPStan\Reflection\Php\PhpMethodReflection( - $declaringClass, - $declaringTrait, - $reflection, - $this->container->getService('reflectionProvider'), - $this->container->getService('053'), - $this->container->getService('054'), - $this->container->getService('030'), - $templateTypeMap, - $phpDocParameterTypes, - $phpDocReturnType, - $phpDocThrowType, - $deprecatedDescription, - $isDeprecated, - $isInternal, - $isFinal, - $stubPhpDocString - ); - } - }; - } - - - public function createService073(): PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension - { - return new PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension(['stdClass']); - } - - - public function createService074(): PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider - { - return new PHPStan\Reflection\ReflectionProvider\LazyReflectionProviderProvider($this->getService('040')); - } - - - public function createService075(): PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider - { - return new PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider($this->getService('080')); - } - - - public function createService076(): PHPStan\Reflection\SignatureMap\SignatureMapParser - { - return new PHPStan\Reflection\SignatureMap\SignatureMapParser($this->getService('021')); - } - - - public function createService077(): PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider - { - return new PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider($this->getService('076'), $this->getService('07')); - } - - - public function createService078(): PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider - { - return new PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider( - $this->getService('077'), - $this->getService('061'), - $this->getService('0100') - ); - } - - - public function createService079(): PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory - { - return new PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory( - $this->getService('07'), - $this->getService('077'), - $this->getService('078') - ); - } - - - public function createService080(): PHPStan\Reflection\SignatureMap\SignatureMapProvider - { - return $this->getService('079')->create(); - } - - - public function createService081(): PHPStan\Rules\ClassCaseSensitivityCheck - { - return new PHPStan\Rules\ClassCaseSensitivityCheck($this->getService('reflectionProvider')); - } - - - public function createService082(): PHPStan\Rules\Comparison\ConstantConditionRuleHelper - { - return new PHPStan\Rules\Comparison\ConstantConditionRuleHelper($this->getService('083'), true); - } - - - public function createService083(): PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper - { - return new PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper( - $this->getService('reflectionProvider'), - $this->getService('typeSpecifier'), - ['stdClass'], - true - ); - } - - - public function createService084(): PHPStan\Rules\FunctionCallParametersCheck - { - return new PHPStan\Rules\FunctionCallParametersCheck($this->getService('098'), true, true, true, true); - } - - - public function createService085(): PHPStan\Rules\FunctionDefinitionCheck - { - return new PHPStan\Rules\FunctionDefinitionCheck( - $this->getService('reflectionProvider'), - $this->getService('081'), - $this->getService('07'), - true, - false - ); - } - - - public function createService086(): PHPStan\Rules\FunctionReturnTypeCheck - { - return new PHPStan\Rules\FunctionReturnTypeCheck($this->getService('098')); - } - - - public function createService087(): PHPStan\Rules\Generics\GenericAncestorsCheck - { - return new PHPStan\Rules\Generics\GenericAncestorsCheck( - $this->getService('reflectionProvider'), - $this->getService('088'), - $this->getService('090'), - true - ); - } - - - public function createService088(): PHPStan\Rules\Generics\GenericObjectTypeCheck - { - return new PHPStan\Rules\Generics\GenericObjectTypeCheck; - } - - - public function createService089(): PHPStan\Rules\Generics\TemplateTypeCheck - { - return new PHPStan\Rules\Generics\TemplateTypeCheck($this->getService('reflectionProvider'), $this->getService('081'), [], true); - } - - - public function createService090(): PHPStan\Rules\Generics\VarianceCheck - { - return new PHPStan\Rules\Generics\VarianceCheck; - } - - - public function createService091(): PHPStan\Rules\IssetCheck - { - return new PHPStan\Rules\IssetCheck($this->getService('095'), $this->getService('096')); - } - - - public function createService092(): PHPStan\Rules\Methods\MethodSignatureRule - { - return new PHPStan\Rules\Methods\MethodSignatureRule(false, false); - } - - - public function createService093(): PHPStan\Rules\MissingTypehintCheck - { - return new PHPStan\Rules\MissingTypehintCheck($this->getService('reflectionProvider'), true, true); - } - - - public function createService094(): PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider - { - return new PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider($this->getService('040')); - } - - - public function createService095(): PHPStan\Rules\Properties\PropertyDescriptor - { - return new PHPStan\Rules\Properties\PropertyDescriptor; - } - - - public function createService096(): PHPStan\Rules\Properties\PropertyReflectionFinder - { - return new PHPStan\Rules\Properties\PropertyReflectionFinder; - } - - - public function createService097(): PHPStan\Rules\RegistryFactory - { - return new PHPStan\Rules\RegistryFactory($this->getService('040')); - } - - - public function createService098(): PHPStan\Rules\RuleLevelHelper - { - return new PHPStan\Rules\RuleLevelHelper($this->getService('reflectionProvider'), true, false, true); - } - - - public function createService099(): PHPStan\Rules\UnusedFunctionParametersCheck - { - return new PHPStan\Rules\UnusedFunctionParametersCheck; - } - - - public function createService0100(): PHPStan\Type\FileTypeMapper - { - return new PHPStan\Type\FileTypeMapper( - $this->getService('074'), - $this->getService('053'), - $this->getService('016'), - $this->getService('015'), - $this->getService('030'), - $this->getService('06') - ); - } - - - public function createService0101(): PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension; - } - - - public function createService0102(): PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension; - } - - - public function createService0103(): PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension; - } - - - public function createService0104(): PHPStan\Type\Php\ArrayFilterFunctionReturnTypeReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFilterFunctionReturnTypeReturnTypeExtension; - } - - - public function createService0105(): PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension; - } - - - public function createService0106(): PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension; - } - - - public function createService0107(): PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension; - } - - - public function createService0108(): PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension; - } - - - public function createService0109(): PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension; - } - - - public function createService0110(): PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension; - } - - - public function createService0111(): PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension; - } - - - public function createService0112(): PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension; - } - - - public function createService0113(): PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension; - } - - - public function createService0114(): PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension; - } - - - public function createService0115(): PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension; - } - - - public function createService0116(): PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension; - } - - - public function createService0117(): PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension; - } - - - public function createService0118(): PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension; - } - - - public function createService0119(): PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension - { - return new PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension; - } - - - public function createService0120(): PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension; - } - - - public function createService0121(): PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension; - } - - - public function createService0122(): PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension; - } - - - public function createService0123(): PHPStan\Type\Php\CountFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\CountFunctionReturnTypeExtension; - } - - - public function createService0124(): PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension; - } - - - public function createService0125(): PHPStan\Type\Php\CurlInitReturnTypeExtension - { - return new PHPStan\Type\Php\CurlInitReturnTypeExtension; - } - - - public function createService0126(): PHPStan\Type\Php\DateFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\DateFunctionReturnTypeExtension; - } - - - public function createService0127(): PHPStan\Type\Php\DsMapDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\DsMapDynamicReturnTypeExtension; - } - - - public function createService0128(): PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension; - } - - - public function createService0129(): PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension($this->getService('07')); - } - - - public function createService0130(): PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0131(): PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension; - } - - - public function createService0132(): PHPStan\Type\Php\GetClassDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\GetClassDynamicReturnTypeExtension; - } - - - public function createService0133(): PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0134(): PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension; - } - - - public function createService0135(): PHPStan\Type\Php\HashHmacFunctionsReturnTypeExtension - { - return new PHPStan\Type\Php\HashHmacFunctionsReturnTypeExtension; - } - - - public function createService0136(): PHPStan\Type\Php\HashFunctionsReturnTypeExtension - { - return new PHPStan\Type\Php\HashFunctionsReturnTypeExtension; - } - - - public function createService0137(): PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension - { - return new PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension; - } - - - public function createService0138(): PHPStan\Type\Php\StatDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\StatDynamicReturnTypeExtension; - } - - - public function createService0139(): PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension - { - return new PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension; - } - - - public function createService0140(): PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension - { - return new PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension($this->getService('096')); - } - - - public function createService0141(): PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension; - } - - - public function createService0142(): PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension; - } - - - public function createService0143(): PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0144(): PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension; - } - - - public function createService0145(): PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension; - } - - - public function createService0146(): PHPStan\Type\Php\VarExportFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\VarExportFunctionDynamicReturnTypeExtension; - } - - - public function createService0147(): PHPStan\Type\Php\MbFunctionsReturnTypeExtension - { - return new PHPStan\Type\Php\MbFunctionsReturnTypeExtension; - } - - - public function createService0148(): PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension; - } - - - public function createService0149(): PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension; - } - - - public function createService0150(): PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension; - } - - - public function createService0151(): PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension; - } - - - public function createService0152(): PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension; - } - - - public function createService0153(): PHPStan\Type\Php\PowFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\PowFunctionReturnTypeExtension; - } - - - public function createService0154(): PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension; - } - - - public function createService0155(): PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension; - } - - - public function createService0156(): PHPStan\Type\Php\RangeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\RangeFunctionReturnTypeExtension; - } - - - public function createService0157(): PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension; - } - - - public function createService0158(): PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension; - } - - - public function createService0159(): PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension - { - return new PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension; - } - - - public function createService0160(): PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension - { - return new PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension; - } - - - public function createService0161(): PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension; - } - - - public function createService0162(): PHPStan\Type\Php\IsIntFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsIntFunctionTypeSpecifyingExtension; - } - - - public function createService0163(): PHPStan\Type\Php\IsFloatFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsFloatFunctionTypeSpecifyingExtension; - } - - - public function createService0164(): PHPStan\Type\Php\IsNullFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsNullFunctionTypeSpecifyingExtension; - } - - - public function createService0165(): PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension; - } - - - public function createService0166(): PHPStan\Type\Php\IsBoolFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsBoolFunctionTypeSpecifyingExtension; - } - - - public function createService0167(): PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension($this->getService('0139')); - } - - - public function createService0168(): PHPStan\Type\Php\IsCountableFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsCountableFunctionTypeSpecifyingExtension; - } - - - public function createService0169(): PHPStan\Type\Php\IsResourceFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsResourceFunctionTypeSpecifyingExtension; - } - - - public function createService0170(): PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension; - } - - - public function createService0171(): PHPStan\Type\Php\IsStringFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsStringFunctionTypeSpecifyingExtension; - } - - - public function createService0172(): PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension; - } - - - public function createService0173(): PHPStan\Type\Php\IsObjectFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsObjectFunctionTypeSpecifyingExtension; - } - - - public function createService0174(): PHPStan\Type\Php\IsNumericFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsNumericFunctionTypeSpecifyingExtension; - } - - - public function createService0175(): PHPStan\Type\Php\IsScalarFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsScalarFunctionTypeSpecifyingExtension; - } - - - public function createService0176(): PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension; - } - - - public function createService0177(): PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0178(): PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension(true); - } - - - public function createService0179(): PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension - { - return new PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension; - } - - - public function createService0180(): PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension; - } - - - public function createService0181(): PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension; - } - - - public function createService0182(): PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension; - } - - - public function createService0183(): PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory - { - return new PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory( - $this->getService('phpParserDecorator'), - $this->getService('0185'), - $this->getService('0186'), - $this->getService('068'), - $this->getService('065'), - $this->getService('063'), - $this->getService('062'), - $this->getService('040'), - [], - [], - [], - [], - ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], - [ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - ], - [], - $this->parameters['singleReflectionFile'], - ['#^PhpParser\\\#', '#^PHPStan\\\#', '#^Hoa\\\#'] - ); - } - - - public function createService0184(): PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory - { - return new class ($this) implements PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory { - private $container; - - - public function __construct(Container_0680f21d46 $container) - { - $this->container = $container; - } - - - public function create( - _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector $functionReflector, - _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector $classReflector, - _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector $constantReflector - ): PHPStan\Reflection\BetterReflection\BetterReflectionProvider { - return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider( - $this->container->getService('074'), - $this->container->getService('043'), - $classReflector, - $this->container->getService('0100'), - $this->container->getService('07'), - $this->container->getService('075'), - $this->container->getService('stubPhpDocProvider'), - $this->container->getService('057'), - $this->container->getService('relativePathHelper'), - $this->container->getService('06'), - $this->container->getService('05'), - $this->container->getService('046'), - $functionReflector, - $constantReflector - ); - } - }; - } - - - public function createService0185(): _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber - { - return new _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber($this->getService('php8PhpParser')); - } - - - public function createService0186(): _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber - { - return new _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber; - } - - - public function createService0187(): PHPStan\Rules\Classes\ExistingClassInInstanceOfRule - { - return new PHPStan\Rules\Classes\ExistingClassInInstanceOfRule( - $this->getService('reflectionProvider'), - $this->getService('081'), - true - ); - } - - - public function createService0188(): PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule - { - return new PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule( - $this->getService('reflectionProvider'), - $this->getService('081'), - true - ); - } - - - public function createService0189(): PHPStan\Rules\Functions\CallToNonExistentFunctionRule - { - return new PHPStan\Rules\Functions\CallToNonExistentFunctionRule($this->getService('reflectionProvider'), false); - } - - - public function createService0190(): PHPStan\Rules\Functions\ClosureUsesThisRule - { - return new PHPStan\Rules\Functions\ClosureUsesThisRule; - } - - - public function createService0191(): PHPStan\Rules\Methods\CallMethodsRule - { - return new PHPStan\Rules\Methods\CallMethodsRule( - $this->getService('reflectionProvider'), - $this->getService('084'), - $this->getService('098'), - false, - true - ); - } - - - public function createService0192(): PHPStan\Rules\Methods\CallStaticMethodsRule - { - return new PHPStan\Rules\Methods\CallStaticMethodsRule( - $this->getService('reflectionProvider'), - $this->getService('084'), - $this->getService('098'), - $this->getService('081'), - false, - true - ); - } - - - public function createService0193(): PHPStan\Rules\Methods\OverridingMethodRule - { - return new PHPStan\Rules\Methods\OverridingMethodRule($this->getService('07'), $this->getService('092'), true); - } - - - public function createService0194(): PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule - { - return new PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule(false); - } - - - public function createService0195(): PHPStan\Rules\Missing\MissingReturnRule - { - return new PHPStan\Rules\Missing\MissingReturnRule(false, true); - } - - - public function createService0196(): PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule - { - return new PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule( - $this->getService('reflectionProvider'), - $this->getService('081'), - false - ); - } - - - public function createService0197(): PHPStan\Rules\Namespaces\ExistingNamesInUseRule - { - return new PHPStan\Rules\Namespaces\ExistingNamesInUseRule( - $this->getService('reflectionProvider'), - $this->getService('081'), - false - ); - } - - - public function createService0198(): PHPStan\Rules\Operators\InvalidIncDecOperationRule - { - return new PHPStan\Rules\Operators\InvalidIncDecOperationRule(false); - } - - - public function createService0199(): PHPStan\Rules\Properties\AccessPropertiesRule - { - return new PHPStan\Rules\Properties\AccessPropertiesRule( - $this->getService('reflectionProvider'), - $this->getService('098'), - true - ); - } - - - public function createService0200(): PHPStan\Rules\Properties\AccessStaticPropertiesRule - { - return new PHPStan\Rules\Properties\AccessStaticPropertiesRule( - $this->getService('reflectionProvider'), - $this->getService('098'), - $this->getService('081') - ); - } - - - public function createService0201(): PHPStan\Rules\Properties\ExistingClassesInPropertiesRule - { - return new PHPStan\Rules\Properties\ExistingClassesInPropertiesRule( - $this->getService('reflectionProvider'), - $this->getService('081'), - true, - false - ); - } - - - public function createService0202(): PHPStan\Rules\Properties\UninitializedPropertyRule - { - return new PHPStan\Rules\Properties\UninitializedPropertyRule($this->getService('094'), ['PHPUnit\Framework\TestCase::setUp']); - } - - - public function createService0203(): PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule - { - return new PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule( - $this->getService('098'), - $this->getService('095'), - $this->getService('096'), - false - ); - } - - - public function createService0204(): PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule - { - return new PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule( - $this->getService('095'), - $this->getService('096'), - $this->getService('098'), - false - ); - } - - - public function createService0205(): PHPStan\Rules\Variables\CompactVariablesRule - { - return new PHPStan\Rules\Variables\CompactVariablesRule(true); - } - - - public function createService0206(): PHPStan\Rules\Variables\DefinedVariableRule - { - return new PHPStan\Rules\Variables\DefinedVariableRule(true, true); - } - - - public function createService0207(): PHPStan\Rules\Regexp\RegularExpressionPatternRule - { - return new PHPStan\Rules\Regexp\RegularExpressionPatternRule; - } - - - public function createService0208(): PHPStan\Rules\Whitespace\FileWhitespaceRule - { - return new PHPStan\Rules\Whitespace\FileWhitespaceRule; - } - - - public function createService0209(): PHPStan\Rules\Variables\VariableCertaintyNullCoalesceRule - { - return new PHPStan\Rules\Variables\VariableCertaintyNullCoalesceRule; - } - - - public function createService0210(): PHPStan\Rules\Classes\MixinRule - { - return new PHPStan\Rules\Classes\MixinRule( - $this->getService('0100'), - $this->getService('reflectionProvider'), - $this->getService('081'), - $this->getService('088'), - $this->getService('093'), - true - ); - } - - - public function createService0211(): PHPStan\Rules\Functions\CallCallablesRule - { - return new PHPStan\Rules\Functions\CallCallablesRule($this->getService('084'), $this->getService('098'), true); - } - - - public function createService0212(): PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule - { - return new PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule( - $this->getService('0100'), - $this->getService('reflectionProvider'), - $this->getService('081'), - $this->getService('088'), - $this->getService('093'), - true, - true - ); - } - - - public function createService0213(): PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule - { - return new PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule($this->getService('096'), true); - } - - - public function createService0214(): PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule - { - return new PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule(true); - } - - - public function createService0215(): PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule - { - return new PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule(true); - } - - - public function createService0216(): PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule - { - return new PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule($this->getService('098'), true); - } - - - public function createService0217(): PHPStan\Rules\Functions\ReturnTypeRule - { - return new PHPStan\Rules\Functions\ReturnTypeRule( - $this->getService('086'), - $this->getService('betterReflectionFunctionReflector') - ); - } - - - public function createService0218(): PHPStan\Rules\Generators\YieldFromTypeRule - { - return new PHPStan\Rules\Generators\YieldFromTypeRule($this->getService('098'), true); - } - - - public function createService0219(): PHPStan\Rules\Generators\YieldInGeneratorRule - { - return new PHPStan\Rules\Generators\YieldInGeneratorRule(true); - } - - - public function createService0220(): PHPStan\Rules\Classes\ImpossibleInstanceOfRule - { - return new PHPStan\Rules\Classes\ImpossibleInstanceOfRule(false, true); - } - - - public function createService0221(): PHPStan\Rules\Comparison\BooleanAndConstantConditionRule - { - return new PHPStan\Rules\Comparison\BooleanAndConstantConditionRule($this->getService('082'), true); - } - - - public function createService0222(): PHPStan\Rules\Comparison\BooleanOrConstantConditionRule - { - return new PHPStan\Rules\Comparison\BooleanOrConstantConditionRule($this->getService('082'), true); - } - - - public function createService0223(): PHPStan\Rules\Comparison\BooleanNotConstantConditionRule - { - return new PHPStan\Rules\Comparison\BooleanNotConstantConditionRule($this->getService('082'), true); - } - - - public function createService0224(): PHPStan\Rules\DeadCode\UnusedPrivateConstantRule - { - return new PHPStan\Rules\DeadCode\UnusedPrivateConstantRule; - } - - - public function createService0225(): PHPStan\Rules\DeadCode\UnusedPrivateMethodRule - { - return new PHPStan\Rules\DeadCode\UnusedPrivateMethodRule; - } - - - public function createService0226(): PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule - { - return new PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule($this->getService('094'), [], [], false); - } - - - public function createService0227(): PHPStan\Rules\Comparison\ElseIfConstantConditionRule - { - return new PHPStan\Rules\Comparison\ElseIfConstantConditionRule($this->getService('082'), true); - } - - - public function createService0228(): PHPStan\Rules\Comparison\IfConstantConditionRule - { - return new PHPStan\Rules\Comparison\IfConstantConditionRule($this->getService('082'), true); - } - - - public function createService0229(): PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule - { - return new PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule($this->getService('083'), false, true); - } - - - public function createService0230(): PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule - { - return new PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule($this->getService('083'), false, true); - } - - - public function createService0231(): PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule - { - return new PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule($this->getService('083'), false, true); - } - - - public function createService0232(): PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule - { - return new PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule(false); - } - - - public function createService0233(): PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule - { - return new PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule($this->getService('082'), true); - } - - - public function createService0234(): PHPStan\Rules\Comparison\UnreachableIfBranchesRule - { - return new PHPStan\Rules\Comparison\UnreachableIfBranchesRule($this->getService('082'), true); - } - - - public function createService0235(): PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule - { - return new PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule($this->getService('082'), true); - } - - - public function createService0236(): PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule(false); - } - - - public function createService0237(): PHPStan\Rules\Variables\IssetRule - { - return new PHPStan\Rules\Variables\IssetRule($this->getService('091')); - } - - - public function createService0238(): PHPStan\Rules\Variables\NullCoalesceRule - { - return new PHPStan\Rules\Variables\NullCoalesceRule($this->getService('091')); - } - - - public function createService0239(): PHPStan\Rules\Functions\RandomIntParametersRule - { - return new PHPStan\Rules\Functions\RandomIntParametersRule($this->getService('reflectionProvider'), true); - } - - - public function createService0240(): PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension - { - return new PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension; - } - - - public function createService0241(): PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension; - } - - - public function createService0242(): PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension - { - return new PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension; - } - - - public function createService0243(): PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension - { - return new PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension; - } - - - public function createService0244(): PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension - { - return new PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension; - } - - - public function createService0245(): PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension - { - return new PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension; - } - - - public function createService0246(): PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension - { - return new PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension; - } - - - public function createService0247(): PHPStan\Rules\Deprecations\DeprecatedClassHelper - { - return new PHPStan\Rules\Deprecations\DeprecatedClassHelper($this->getService('broker')); - } - - - public function createServiceBetterReflectionClassReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector - { - return new PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector($this->getService('betterReflectionSourceLocator')); - } - - - public function createServiceBetterReflectionConstantReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingConstantReflector - { - return new PHPStan\Reflection\BetterReflection\Reflector\MemoizingConstantReflector( - $this->getService('betterReflectionSourceLocator'), - $this->getService('betterReflectionClassReflector') - ); - } - - - public function createServiceBetterReflectionFunctionReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingFunctionReflector - { - return new PHPStan\Reflection\BetterReflection\Reflector\MemoizingFunctionReflector( - $this->getService('betterReflectionSourceLocator'), - $this->getService('betterReflectionClassReflector') - ); - } - - - public function createServiceBetterReflectionProvider(): PHPStan\Reflection\BetterReflection\BetterReflectionProvider - { - return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider( - $this->getService('074'), - $this->getService('043'), - $this->getService('betterReflectionClassReflector'), - $this->getService('0100'), - $this->getService('07'), - $this->getService('075'), - $this->getService('stubPhpDocProvider'), - $this->getService('057'), - $this->getService('relativePathHelper'), - $this->getService('06'), - $this->getService('05'), - $this->getService('046'), - $this->getService('betterReflectionFunctionReflector'), - $this->getService('betterReflectionConstantReflector') - ); - } - - - public function createServiceBetterReflectionSourceLocator(): _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\SourceLocator - { - return $this->getService('0183')->create(); - } - - - public function createServiceBroker(): PHPStan\Broker\Broker - { - return $this->getService('brokerFactory')->create(); - } - - - public function createServiceBrokerFactory(): PHPStan\Broker\BrokerFactory - { - return new PHPStan\Broker\BrokerFactory($this->getService('040')); - } - - - public function createServiceCacheStorage(): PHPStan\Cache\FileCacheStorage - { - return new PHPStan\Cache\FileCacheStorage('/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/cache/PHPStan'); - } - - - public function createServiceContainer(): Container_0680f21d46 - { - return $this; - } - - - public function createServiceCurrentPhpVersionLexer(): PhpParser\Lexer - { - return $this->getService('02')->create(); - } - - - public function createServiceCurrentPhpVersionPhpParser(): PhpParser\Parser\Php7 - { - return new PhpParser\Parser\Php7($this->getService('currentPhpVersionLexer')); - } - - - public function createServiceCurrentPhpVersionRichParser(): PHPStan\Parser\RichParser - { - return new PHPStan\Parser\RichParser( - $this->getService('currentPhpVersionPhpParser'), - $this->getService('currentPhpVersionLexer'), - $this->getService('03'), - $this->getService('04'), - $this->getService('050'), - $this->getService('055'), - $this->getService('07') - ); - } - - - public function createServiceCurrentPhpVersionSimpleParser(): PHPStan\Parser\SimpleParser - { - return new PHPStan\Parser\SimpleParser($this->getService('currentPhpVersionPhpParser'), $this->getService('03')); - } - - - public function createServiceErrorFormatter__baselineNeon(): PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter($this->getService('simpleRelativePathHelper')); - } - - - public function createServiceErrorFormatter__checkstyle(): PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter($this->getService('simpleRelativePathHelper')); - } - - - public function createServiceErrorFormatter__github(): PHPStan\Command\ErrorFormatter\GithubErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\GithubErrorFormatter( - $this->getService('simpleRelativePathHelper'), - $this->getService('errorFormatter.table') - ); - } - - - public function createServiceErrorFormatter__gitlab(): PHPStan\Command\ErrorFormatter\GitlabErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\GitlabErrorFormatter($this->getService('simpleRelativePathHelper')); - } - - - public function createServiceErrorFormatter__json(): PHPStan\Command\ErrorFormatter\JsonErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\JsonErrorFormatter(false); - } - - - public function createServiceErrorFormatter__junit(): PHPStan\Command\ErrorFormatter\JunitErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\JunitErrorFormatter($this->getService('simpleRelativePathHelper')); - } - - - public function createServiceErrorFormatter__prettyJson(): PHPStan\Command\ErrorFormatter\JsonErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\JsonErrorFormatter(true); - } - - - public function createServiceErrorFormatter__raw(): PHPStan\Command\ErrorFormatter\RawErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\RawErrorFormatter; - } - - - public function createServiceErrorFormatter__table(): PHPStan\Command\ErrorFormatter\TableErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\TableErrorFormatter($this->getService('relativePathHelper'), true); - } - - - public function createServiceErrorFormatter__teamcity(): PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter($this->getService('simpleRelativePathHelper')); - } - - - public function createServiceInnerRuntimeReflectionProvider(): PHPStan\Reflection\Runtime\RuntimeReflectionProvider - { - return new PHPStan\Reflection\Runtime\RuntimeReflectionProvider( - $this->getService('074'), - $this->getService('043'), - $this->getService('057'), - $this->getService('0100'), - $this->getService('07'), - $this->getService('075'), - $this->getService('stubPhpDocProvider'), - $this->getService('0185') - ); - } - - - public function createServiceNodeScopeResolverClassReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector - { - return $this->getService('betterReflectionClassReflector'); - } - - - public function createServiceParentDirectoryRelativePathHelper(): PHPStan\File\ParentDirectoryRelativePathHelper - { - return new PHPStan\File\ParentDirectoryRelativePathHelper('/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check'); - } - - - public function createServicePathRoutingParser(): PHPStan\Parser\PathRoutingParser - { - return new PHPStan\Parser\PathRoutingParser( - $this->getService('046'), - $this->getService('currentPhpVersionRichParser'), - $this->getService('currentPhpVersionSimpleParser'), - $this->getService('php8Parser') - ); - } - - - public function createServicePhp8Lexer(): PhpParser\Lexer\Emulative - { - return new PhpParser\Lexer\Emulative; - } - - - public function createServicePhp8Parser(): PHPStan\Parser\SimpleParser - { - return new PHPStan\Parser\SimpleParser($this->getService('php8PhpParser'), $this->getService('03')); - } - - - public function createServicePhp8PhpParser(): PhpParser\Parser\Php7 - { - return new PhpParser\Parser\Php7($this->getService('php8Lexer')); - } - - - public function createServicePhpParserDecorator(): PHPStan\Parser\PhpParserDecorator - { - return new PHPStan\Parser\PhpParserDecorator($this->getService('053')); - } - - - public function createServiceReflectionProvider(): PHPStan\Reflection\ReflectionProvider - { - return $this->getService('reflectionProviderFactory')->create(); - } - - - public function createServiceReflectionProviderFactory(): PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory - { - return new PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory( - $this->getService('runtimeReflectionProvider'), - $this->getService('betterReflectionProvider'), - false - ); - } - - - public function createServiceRegexGrammarStream(): Hoa\File\Read - { - return new Hoa\File\Read('hoa://Library/Regex/Grammar.pp'); - } - - - public function createServiceRegexParser(): Hoa\Compiler\Llk\Parser - { - return Hoa\Compiler\Llk\Llk::load($this->getService('regexGrammarStream')); - } - - - public function createServiceRegistry(): PHPStan\Rules\Registry - { - return $this->getService('097')->create(); - } - - - public function createServiceRelativePathHelper(): PHPStan\File\RelativePathHelper - { - return new PHPStan\File\FuzzyRelativePathHelper( - $this->getService('parentDirectoryRelativePathHelper'), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'] - ); - } - - - public function createServiceRules__0(): PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule - { - return new PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule($this->getService('05')); - } - - - public function createServiceRules__1(): PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule - { - return new PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule; - } - - - public function createServiceRules__10(): PHPStan\Rules\Exceptions\ThrowExpressionRule - { - return new PHPStan\Rules\Exceptions\ThrowExpressionRule($this->getService('07')); - } - - - public function createServiceRules__11(): PHPStan\Rules\Functions\CallToFunctionParametersRule - { - return new PHPStan\Rules\Functions\CallToFunctionParametersRule( - $this->getService('reflectionProvider'), - $this->getService('084') - ); - } - - - public function createServiceRules__12(): PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule - { - return new PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule($this->getService('085')); - } - - - public function createServiceRules__13(): PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule - { - return new PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule($this->getService('085')); - } - - - public function createServiceRules__14(): PHPStan\Rules\Functions\ExistingClassesInTypehintsRule - { - return new PHPStan\Rules\Functions\ExistingClassesInTypehintsRule($this->getService('085')); - } - - - public function createServiceRules__15(): PHPStan\Rules\Functions\InnerFunctionRule - { - return new PHPStan\Rules\Functions\InnerFunctionRule; - } - - - public function createServiceRules__16(): PHPStan\Rules\Functions\PrintfParametersRule - { - return new PHPStan\Rules\Functions\PrintfParametersRule; - } - - - public function createServiceRules__17(): PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule - { - return new PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule; - } - - - public function createServiceRules__18(): PHPStan\Rules\Methods\ExistingClassesInTypehintsRule - { - return new PHPStan\Rules\Methods\ExistingClassesInTypehintsRule($this->getService('085')); - } - - - public function createServiceRules__19(): PHPStan\Rules\Methods\MissingMethodImplementationRule - { - return new PHPStan\Rules\Methods\MissingMethodImplementationRule; - } - - - public function createServiceRules__2(): PHPStan\Rules\Classes\ClassConstantRule - { - return new PHPStan\Rules\Classes\ClassConstantRule( - $this->getService('reflectionProvider'), - $this->getService('098'), - $this->getService('081'), - $this->getService('07') - ); - } - - - public function createServiceRules__20(): PHPStan\Rules\Properties\AccessPropertiesInAssignRule - { - return new PHPStan\Rules\Properties\AccessPropertiesInAssignRule($this->getService('0199')); - } - - - public function createServiceRules__21(): PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule - { - return new PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule($this->getService('0200')); - } - - - public function createServiceRules__22(): PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule - { - return new PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule($this->getService('07')); - } - - - public function createServiceRules__23(): PHPStan\Rules\Variables\UnsetRule - { - return new PHPStan\Rules\Variables\UnsetRule; - } - - - public function createServiceRules__24(): PHPStan\Rules\Classes\UnusedConstructorParametersRule - { - return new PHPStan\Rules\Classes\UnusedConstructorParametersRule($this->getService('099')); - } - - - public function createServiceRules__25(): PHPStan\Rules\Constants\ConstantRule - { - return new PHPStan\Rules\Constants\ConstantRule; - } - - - public function createServiceRules__26(): PHPStan\Rules\Functions\UnusedClosureUsesRule - { - return new PHPStan\Rules\Functions\UnusedClosureUsesRule($this->getService('099')); - } - - - public function createServiceRules__27(): PHPStan\Rules\Variables\VariableCertaintyInIssetRule - { - return new PHPStan\Rules\Variables\VariableCertaintyInIssetRule; - } - - - public function createServiceRules__28(): PHPStan\Rules\Cast\EchoRule - { - return new PHPStan\Rules\Cast\EchoRule($this->getService('098')); - } - - - public function createServiceRules__29(): PHPStan\Rules\Cast\InvalidCastRule - { - return new PHPStan\Rules\Cast\InvalidCastRule($this->getService('reflectionProvider'), $this->getService('098')); - } - - - public function createServiceRules__3(): PHPStan\Rules\Classes\DuplicateDeclarationRule - { - return new PHPStan\Rules\Classes\DuplicateDeclarationRule; - } - - - public function createServiceRules__30(): PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule - { - return new PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule($this->getService('05'), $this->getService('098')); - } - - - public function createServiceRules__31(): PHPStan\Rules\Cast\PrintRule - { - return new PHPStan\Rules\Cast\PrintRule($this->getService('098')); - } - - - public function createServiceRules__32(): PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule - { - return new PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule; - } - - - public function createServiceRules__33(): PHPStan\Rules\Generics\ClassAncestorsRule - { - return new PHPStan\Rules\Generics\ClassAncestorsRule($this->getService('0100'), $this->getService('087')); - } - - - public function createServiceRules__34(): PHPStan\Rules\Generics\ClassTemplateTypeRule - { - return new PHPStan\Rules\Generics\ClassTemplateTypeRule($this->getService('089')); - } - - - public function createServiceRules__35(): PHPStan\Rules\Generics\FunctionTemplateTypeRule - { - return new PHPStan\Rules\Generics\FunctionTemplateTypeRule($this->getService('0100'), $this->getService('089')); - } - - - public function createServiceRules__36(): PHPStan\Rules\Generics\FunctionSignatureVarianceRule - { - return new PHPStan\Rules\Generics\FunctionSignatureVarianceRule($this->getService('090')); - } - - - public function createServiceRules__37(): PHPStan\Rules\Generics\InterfaceAncestorsRule - { - return new PHPStan\Rules\Generics\InterfaceAncestorsRule($this->getService('0100'), $this->getService('087')); - } - - - public function createServiceRules__38(): PHPStan\Rules\Generics\InterfaceTemplateTypeRule - { - return new PHPStan\Rules\Generics\InterfaceTemplateTypeRule($this->getService('0100'), $this->getService('089')); - } - - - public function createServiceRules__39(): PHPStan\Rules\Generics\MethodTemplateTypeRule - { - return new PHPStan\Rules\Generics\MethodTemplateTypeRule($this->getService('0100'), $this->getService('089')); - } - - - public function createServiceRules__4(): PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule - { - return new PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule( - $this->getService('081'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__40(): PHPStan\Rules\Generics\MethodSignatureVarianceRule - { - return new PHPStan\Rules\Generics\MethodSignatureVarianceRule($this->getService('090')); - } - - - public function createServiceRules__41(): PHPStan\Rules\Generics\TraitTemplateTypeRule - { - return new PHPStan\Rules\Generics\TraitTemplateTypeRule($this->getService('0100'), $this->getService('089')); - } - - - public function createServiceRules__42(): PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule - { - return new PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule; - } - - - public function createServiceRules__43(): PHPStan\Rules\Operators\InvalidBinaryOperationRule - { - return new PHPStan\Rules\Operators\InvalidBinaryOperationRule($this->getService('05'), $this->getService('098')); - } - - - public function createServiceRules__44(): PHPStan\Rules\Operators\InvalidUnaryOperationRule - { - return new PHPStan\Rules\Operators\InvalidUnaryOperationRule; - } - - - public function createServiceRules__45(): PHPStan\Rules\Operators\InvalidComparisonOperationRule - { - return new PHPStan\Rules\Operators\InvalidComparisonOperationRule($this->getService('098')); - } - - - public function createServiceRules__46(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule - { - return new PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule($this->getService('0100'), $this->getService('088')); - } - - - public function createServiceRules__47(): PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule - { - return new PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule($this->getService('088')); - } - - - public function createServiceRules__48(): PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule - { - return new PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule($this->getService('010'), $this->getService('013')); - } - - - public function createServiceRules__49(): PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule - { - return new PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule($this->getService('010'), $this->getService('013')); - } - - - public function createServiceRules__5(): PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule - { - return new PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule( - $this->getService('081'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__50(): PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule - { - return new PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule($this->getService('0100')); - } - - - public function createServiceRules__51(): PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule - { - return new PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule($this->getService('0100')); - } - - - public function createServiceRules__52(): PHPStan\Rules\Arrays\AppendedArrayItemTypeRule - { - return new PHPStan\Rules\Arrays\AppendedArrayItemTypeRule($this->getService('096'), $this->getService('098')); - } - - - public function createServiceRules__53(): PHPStan\Rules\Arrays\IterableInForeachRule - { - return new PHPStan\Rules\Arrays\IterableInForeachRule($this->getService('098')); - } - - - public function createServiceRules__54(): PHPStan\Rules\Arrays\OffsetAccessAssignmentRule - { - return new PHPStan\Rules\Arrays\OffsetAccessAssignmentRule($this->getService('098')); - } - - - public function createServiceRules__55(): PHPStan\Rules\Arrays\OffsetAccessAssignOpRule - { - return new PHPStan\Rules\Arrays\OffsetAccessAssignOpRule($this->getService('098')); - } - - - public function createServiceRules__56(): PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule - { - return new PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule($this->getService('098')); - } - - - public function createServiceRules__57(): PHPStan\Rules\Arrays\UnpackIterableInArrayRule - { - return new PHPStan\Rules\Arrays\UnpackIterableInArrayRule($this->getService('098')); - } - - - public function createServiceRules__58(): PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule - { - return new PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule($this->getService('086')); - } - - - public function createServiceRules__59(): PHPStan\Rules\Functions\ClosureReturnTypeRule - { - return new PHPStan\Rules\Functions\ClosureReturnTypeRule($this->getService('086')); - } - - - public function createServiceRules__6(): PHPStan\Rules\Classes\ExistingClassInClassExtendsRule - { - return new PHPStan\Rules\Classes\ExistingClassInClassExtendsRule( - $this->getService('081'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__60(): PHPStan\Rules\Generators\YieldTypeRule - { - return new PHPStan\Rules\Generators\YieldTypeRule($this->getService('098')); - } - - - public function createServiceRules__61(): PHPStan\Rules\Methods\ReturnTypeRule - { - return new PHPStan\Rules\Methods\ReturnTypeRule($this->getService('086')); - } - - - public function createServiceRules__62(): PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule - { - return new PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule($this->getService('098')); - } - - - public function createServiceRules__63(): PHPStan\Rules\Properties\TypesAssignedToPropertiesRule - { - return new PHPStan\Rules\Properties\TypesAssignedToPropertiesRule( - $this->getService('098'), - $this->getService('095'), - $this->getService('096') - ); - } - - - public function createServiceRules__64(): PHPStan\Rules\Variables\ThrowTypeRule - { - return new PHPStan\Rules\Variables\ThrowTypeRule($this->getService('098')); - } - - - public function createServiceRules__65(): PHPStan\Rules\Variables\VariableCloningRule - { - return new PHPStan\Rules\Variables\VariableCloningRule($this->getService('098')); - } - - - public function createServiceRules__66(): PHPStan\Rules\Arrays\DeadForeachRule - { - return new PHPStan\Rules\Arrays\DeadForeachRule; - } - - - public function createServiceRules__67(): PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule - { - return new PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule; - } - - - public function createServiceRules__68(): PHPStan\Rules\DeadCode\NoopRule - { - return new PHPStan\Rules\DeadCode\NoopRule($this->getService('05')); - } - - - public function createServiceRules__69(): PHPStan\Rules\DeadCode\UnreachableStatementRule - { - return new PHPStan\Rules\DeadCode\UnreachableStatementRule; - } - - - public function createServiceRules__7(): PHPStan\Rules\Classes\ExistingClassInTraitUseRule - { - return new PHPStan\Rules\Classes\ExistingClassInTraitUseRule($this->getService('081'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__70(): PHPStan\Rules\Exceptions\DeadCatchRule - { - return new PHPStan\Rules\Exceptions\DeadCatchRule; - } - - - public function createServiceRules__71(): PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule - { - return new PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__72(): PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule - { - return new PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule($this->getService('098')); - } - - - public function createServiceRules__73(): PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule - { - return new PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule( - $this->getService('098'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__74(): PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule; - } - - - public function createServiceRules__75(): PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule; - } - - - public function createServiceRules__76(): PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule; - } - - - public function createServiceRules__77(): PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule - { - return new PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule($this->getService('093')); - } - - - public function createServiceRules__78(): PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule - { - return new PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule($this->getService('093')); - } - - - public function createServiceRules__79(): PHPStan\Rules\Methods\MissingMethodParameterTypehintRule - { - return new PHPStan\Rules\Methods\MissingMethodParameterTypehintRule($this->getService('093')); - } - - - public function createServiceRules__8(): PHPStan\Rules\Classes\InstantiationRule - { - return new PHPStan\Rules\Classes\InstantiationRule( - $this->getService('reflectionProvider'), - $this->getService('084'), - $this->getService('081') - ); - } - - - public function createServiceRules__80(): PHPStan\Rules\Methods\MissingMethodReturnTypehintRule - { - return new PHPStan\Rules\Methods\MissingMethodReturnTypehintRule($this->getService('093')); - } - - - public function createServiceRules__81(): PHPStan\Rules\Properties\MissingPropertyTypehintRule - { - return new PHPStan\Rules\Properties\MissingPropertyTypehintRule($this->getService('093')); - } - - - public function createServiceRules__82(): PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule - { - return new PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule($this->getService('broker')); - } - - - public function createServiceRules__83(): PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule - { - return new PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule($this->getService('broker'), $this->getService('098')); - } - - - public function createServiceRules__84(): PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule - { - return new PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule($this->getService('broker')); - } - - - public function createServiceRules__85(): PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule - { - return new PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule($this->getService('broker')); - } - - - public function createServiceRules__86(): PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule - { - return new PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule($this->getService('broker'), $this->getService('098')); - } - - - public function createServiceRules__87(): PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule - { - return new PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule( - $this->getService('broker'), - $this->getService('098') - ); - } - - - public function createServiceRules__88(): PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule - { - return new PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__89(): PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule - { - return new PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule($this->getService('broker')); - } - - - public function createServiceRules__9(): PHPStan\Rules\Classes\NewStaticRule - { - return new PHPStan\Rules\Classes\NewStaticRule; - } - - - public function createServiceRules__90(): PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule - { - return new PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule($this->getService('broker')); - } - - - public function createServiceRules__91(): PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule - { - return new PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule($this->getService('broker')); - } - - - public function createServiceRules__92(): PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule - { - return new PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule($this->getService('broker'), $this->getService('098')); - } - - - public function createServiceRules__93(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule - { - return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule($this->getService('0247')); - } - - - public function createServiceRules__94(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule - { - return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule($this->getService('0247')); - } - - - public function createServiceRules__95(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule - { - return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule($this->getService('0247')); - } - - - public function createServiceRules__96(): PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule - { - return new PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule; - } - - - public function createServiceRules__97(): PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule - { - return new PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule($this->getService('broker')); - } - - - public function createServiceRuntimeReflectionProvider(): PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider - { - return new PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider( - $this->getService('innerRuntimeReflectionProvider'), - $this->getService('0185'), - ['#^PhpParser\\\#', '#^PHPStan\\\#', '#^Hoa\\\#'], - null - ); - } - - - public function createServiceSimpleRelativePathHelper(): PHPStan\File\RelativePathHelper - { - return new PHPStan\File\SimpleRelativePathHelper('/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check'); - } - - - public function createServiceStubPhpDocProvider(): PHPStan\PhpDoc\StubPhpDocProvider - { - return new PHPStan\PhpDoc\StubPhpDocProvider( - $this->getService('053'), - $this->getService('0100'), - [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', - ] - ); - } - - - public function createServiceTypeSpecifier(): PHPStan\Analyser\TypeSpecifier - { - return $this->getService('typeSpecifierFactory')->create(); - } - - - public function createServiceTypeSpecifierFactory(): PHPStan\Analyser\TypeSpecifierFactory - { - return new PHPStan\Analyser\TypeSpecifierFactory($this->getService('040')); - } - - - public function initialize() - { - } -} diff --git a/data/cache/nette.configurator/Container_0680f21d46.php.lock b/data/cache/nette.configurator/Container_0680f21d46.php.lock deleted file mode 100644 index e69de29..0000000 diff --git a/data/cache/nette.configurator/Container_0680f21d46.php.meta b/data/cache/nette.configurator/Container_0680f21d46.php.meta deleted file mode 100644 index 7da9cbc..0000000 --- a/data/cache/nette.configurator/Container_0680f21d46.php.meta +++ /dev/null @@ -1 +0,0 @@ -a:6:{i:0;i:1;i:1;a:21:{s:134:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.neon";i:1603454189;s:143:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.levelmax.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level8.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level7.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level6.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level5.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level4.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level3.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level2.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level1.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level0.neon";i:1603454189;s:97:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist";i:1603543935;s:125:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon";i:1596634130;s:131:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon";i:1595343150;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Extensions/ServicesExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Extensions/ParametersExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Extensions/PhpExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Extensions/ExtensionsExtension.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/RulesExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/ConditionalTagsExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/ParametersSchemaExtension.php";i:1603454189;}i:2;a:444:{s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/DuplicateKeysInLiteralArraysRule.php";i:1603454189;s:136:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Rule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/OffsetAccessWithoutDimForReadingRule.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ClassConstantRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/DuplicateDeclarationRule.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassesInClassImplementsRule.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassesInInterfaceExtendsRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassInClassExtendsRule.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassInTraitUseRule.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/InstantiationRule.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/NewStaticRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Exceptions/ThrowExpressionRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/CallToFunctionParametersRule.php";i:1603454189;s:185:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ExistingClassesInArrowFunctionTypehintsRule.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ExistingClassesInClosureTypehintsRule.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ExistingClassesInTypehintsRule.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/InnerFunctionRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/PrintfParametersRule.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/AbstractMethodInNonAbstractClassRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/ExistingClassesInTypehintsRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/MissingMethodImplementationRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/AccessPropertiesInAssignRule.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/AccessStaticPropertiesInAssignRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Ternary/RequireParenthesesForNestedTernaryRule.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/UnsetRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/UnusedConstructorParametersRule.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Constants/ConstantRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/UnusedClosureUsesRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/VariableCertaintyInIssetRule.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Cast/EchoRule.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Cast/InvalidCastRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Cast/InvalidPartOfEncapsedStringRule.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Cast/PrintRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/IncompatibleDefaultParameterTypeRule.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/ClassAncestorsRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/ClassTemplateTypeRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/FunctionTemplateTypeRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/FunctionSignatureVarianceRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/InterfaceAncestorsRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/InterfaceTemplateTypeRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/MethodTemplateTypeRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/MethodSignatureVarianceRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/TraitTemplateTypeRule.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/IncompatibleDefaultParameterTypeRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Operators/InvalidBinaryOperationRule.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Operators/InvalidUnaryOperationRule.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Operators/InvalidComparisonOperationRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/IncompatiblePhpDocTypeRule.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/IncompatiblePropertyPhpDocTypeRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/InvalidPhpDocTagValueRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/InvalidPHPStanDocTagRule.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/InvalidThrowsPhpDocValueRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/WrongVariableNameInVarTagRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/AppendedArrayItemTypeRule.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/IterableInForeachRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/OffsetAccessAssignmentRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/OffsetAccessAssignOpRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/OffsetAccessValueAssignmentRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/UnpackIterableInArrayRule.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ArrowFunctionReturnTypeRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ClosureReturnTypeRule.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generators/YieldTypeRule.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/ReturnTypeRule.php";i:1603454189;s:184:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/DefaultValueTypesAssignedToPropertiesRule.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/TypesAssignedToPropertiesRule.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/ThrowTypeRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/VariableCloningRule.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/DeadForeachRule.php";i:1603454189;s:189:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/NumberComparisonOperatorsConstantConditionRule.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/NoopRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/UnreachableStatementRule.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Exceptions/DeadCatchRule.php";i:1603454189;s:185:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/CallToFunctionStamentWithoutSideEffectsRule.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/CallToMethodStamentWithoutSideEffectsRule.php";i:1603454189;s:187:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/CallToStaticMethodStamentWithoutSideEffectsRule.php";i:1603454189;s:187:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideArrowFunctionReturnTypehintRule.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideClosureReturnTypehintRule.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideFunctionReturnTypehintRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/MissingFunctionParameterTypehintRule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/MissingFunctionReturnTypehintRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/MissingMethodParameterTypehintRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/MissingMethodReturnTypehintRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/MissingPropertyTypehintRule.php";i:1603454189;s:176:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/AccessDeprecatedPropertyRule.php";i:1595343150;s:182:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/AccessDeprecatedStaticPropertyRule.php";i:1595343150;s:176:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedFunctionRule.php";i:1595343150;s:174:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedMethodRule.php";i:1595343150;s:180:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedStaticMethodRule.php";i:1595343150;s:187:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/FetchingClassConstOfDeprecatedClassRule.php";i:1595343150;s:175:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/FetchingDeprecatedConstRule.php";i:1595343150;s:187:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/ImplementationOfDeprecatedInterfaceRule.php";i:1595343150;s:180:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InheritanceOfDeprecatedClassRule.php";i:1595343150;s:184:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InheritanceOfDeprecatedInterfaceRule.php";i:1595343150;s:182:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InstantiationOfDeprecatedClassRule.php";i:1595343150;s:192:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInClassMethodSignatureRule.php";i:1595343150;s:188:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInClosureSignatureRule.php";i:1595343150;s:189:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInFunctionSignatureRule.php";i:1595343150;s:173:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/UsageOfDeprecatedCastRule.php";i:1595343150;s:174:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/UsageOfDeprecatedTraitRule.php";i:1595343150;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/BuilderFactory.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/LexerFactory.php";i:1603454189;s:184:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor.php";i:1603454189;s:193:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NodeConnectingVisitor.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Broker/AnonymousClassNameHelper.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Php/PhpVersionFactoryFactory.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/phpstan/phpdoc-parser/src/Lexer/Lexer.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/phpstan/phpdoc-parser/src/Parser/TypeParser.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/phpstan/phpdoc-parser/src/Parser/ConstExprParser.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/phpstan/phpdoc-parser/src/Parser/PhpDocParser.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/PhpDocInheritanceResolver.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/PhpDocNodeResolver.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/PhpDocStringResolver.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/ConstExprNodeResolver.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeAlias/TypeAliasesTypeNodeResolverExtension.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeNodeResolverExtension.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeNodeResolver.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeStringResolver.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/StubValidator.php";i:1603454189;s:143:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/Analyser.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/FileAnalyser.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/IgnoredErrorHelper.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/LazyScopeFactory.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/ScopeFactory.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/NodeScopeResolver.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/ResultCache/ResultCacheClearer.php";i:1603454189;s:137:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Cache/Cache.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/AnalyseApplication.php";i:1603454189;s:148:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/AnalyserRunner.php";i:1603454189;s:150:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/FixerApplication.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/IgnoredRegexValidator.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/DependencyDumper.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/DependencyResolver.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/ExportedNodeFetcher.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/ExportedNodeResolver.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/ExportedNodeVisitor.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Nette/NetteContainer.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Container.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/DerivativeContainerFactory.php";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FileHelper.php";i:1603454189;s:143:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FileExcluder.php";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FileFinder.php";i:1603454189;s:142:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FileMonitor.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/NodeVisitor/StatementOrderVisitor.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parallel/ParallelAnalyser.php";i:1603454189;s:144:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parallel/Scheduler.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/CachedParser.php";i:1603454189;s:139:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/Parser.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/FunctionCallStatementFinder.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/NodeChildrenVisitor.php";i:1603454189;s:148:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Process/CpuCoreCounter.php";i:1603454189;s:191:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Annotations/AnnotationsMethodsClassReflectionExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/MethodsClassReflectionExtension.php";i:1603454189;s:194:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Annotations/AnnotationsPropertiesClassReflectionExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/PropertiesClassReflectionExtension.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/CachingVisitor.php";i:1603454189;s:184:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/FileNodesFetcher.php";i:1603454189;s:189:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/AutoloadSourceLocator.php";i:1603454189;s:196:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/Type/SourceLocator.php";i:1603454189;s:214:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/ComposerJsonAndInstalledJsonSourceLocatorMaker.php";i:1603454189;s:209:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocatorRepository.php";i:1603454189;s:210:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocatorRepository.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Mixin/MixinMethodsClassReflectionExtension.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Mixin/MixinPropertiesClassReflectionExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/PhpClassReflectionExtension.php";i:1603454189;s:186:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/UniversalObjectCratesClassReflectionExtension.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BrokerAwareExtension.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/NativeFunctionReflectionProvider.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/SignatureMapParser.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/FunctionSignatureMapProvider.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/SignatureMapProvider.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/Php8SignatureMapProvider.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/SignatureMapProviderFactory.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/ClassCaseSensitivityCheck.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ConstantConditionRuleHelper.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeHelper.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/FunctionCallParametersCheck.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/FunctionDefinitionCheck.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/FunctionReturnTypeCheck.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/GenericAncestorsCheck.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/GenericObjectTypeCheck.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/TemplateTypeCheck.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/VarianceCheck.php";i:1603454189;s:142:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/IssetCheck.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/MethodSignatureRule.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/MissingTypehintCheck.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/LazyReadWritePropertiesExtensionProvider.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/ReadWritePropertiesExtensionProvider.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/PropertyDescriptor.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/PropertyReflectionFinder.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/RegistryFactory.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/RuleLevelHelper.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/UnusedFunctionParametersCheck.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/FileTypeMapper.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArgumentBasedFunctionReturnTypeExtension.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/DynamicFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayFillFunctionReturnTypeExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayFillKeysFunctionReturnTypeExtension.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayFilterFunctionReturnTypeReturnTypeExtension.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeyDynamicReturnTypeExtension.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeyExistsFunctionTypeSpecifyingExtension.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/FunctionTypeSpecifyingExtension.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/TypeSpecifierAwareExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeyFirstDynamicReturnTypeExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeyLastDynamicReturnTypeExtension.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeysFunctionDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayMapFunctionReturnTypeExtension.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayMergeFunctionDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayPopFunctionReturnTypeExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayReduceFunctionReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayShiftFunctionReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArraySliceFunctionReturnTypeExtension.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArraySearchFunctionDynamicReturnTypeExtension.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayValuesFunctionDynamicReturnTypeExtension.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/Base64DecodeDynamicFunctionReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/BcMathStringOrNullReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ClosureBindDynamicReturnTypeExtension.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/DynamicStaticMethodReturnTypeExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ClosureBindToDynamicReturnTypeExtension.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/DynamicMethodReturnTypeExtension.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ClosureFromCallableDynamicReturnTypeExtension.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/CountFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/CountFunctionTypeSpecifyingExtension.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/CurlInitReturnTypeExtension.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DateFunctionReturnTypeExtension.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DsMapDynamicReturnTypeExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DioStatDynamicFunctionReturnTypeExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ExplodeFunctionDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/FilterVarDynamicReturnTypeExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/GetCalledClassDynamicReturnTypeExtension.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/GetClassDynamicReturnTypeExtension.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/GetParentClassDynamicFunctionReturnTypeExtension.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/GettimeofdayDynamicFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/HashHmacFunctionsReturnTypeExtension.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/HashFunctionsReturnTypeExtension.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/SimpleXMLElementClassPropertyReflectionExtension.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/StatDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MethodExistsTypeSpecifyingExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/PropertyExistsTypeSpecifyingExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MinMaxFunctionReturnTypeExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/PathinfoFunctionDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/PregSplitDynamicReturnTypeExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ReplaceFunctionsDynamicReturnTypeExtension.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayPointerFunctionsDynamicReturnTypeExtension.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/VarExportFunctionDynamicReturnTypeExtension.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MbFunctionsReturnTypeExtension.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MbConvertEncodingFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MicrotimeFunctionReturnTypeExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/HrtimeFunctionReturnTypeExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ParseUrlFunctionDynamicReturnTypeExtension.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/VersionCompareFunctionDynamicReturnTypeExtension.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/PowFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/StrtotimeFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/RandomIntFunctionReturnTypeExtension.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/RangeFunctionReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/AssertFunctionTypeSpecifyingExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ClassExistsFunctionTypeSpecifyingExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DefineConstantTypeSpecifyingExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DefinedConstantTypeSpecifyingExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/InArrayFunctionTypeSpecifyingExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsIntFunctionTypeSpecifyingExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsFloatFunctionTypeSpecifyingExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsNullFunctionTypeSpecifyingExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsArrayFunctionTypeSpecifyingExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsBoolFunctionTypeSpecifyingExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsCallableFunctionTypeSpecifyingExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsCountableFunctionTypeSpecifyingExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsResourceFunctionTypeSpecifyingExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsIterableFunctionTypeSpecifyingExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsStringFunctionTypeSpecifyingExtension.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsSubclassOfFunctionTypeSpecifyingExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsObjectFunctionTypeSpecifyingExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsNumericFunctionTypeSpecifyingExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsScalarFunctionTypeSpecifyingExtension.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsAFunctionTypeSpecifyingExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/JsonThrowOnErrorDynamicReturnTypeExtension.php";i:1603454189;s:184:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/TypeSpecifyingFunctionsDynamicReturnTypeExtension.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/SimpleXMLElementAsXMLMethodReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/StrSplitFunctionReturnTypeExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/SprintfFunctionDynamicReturnTypeExtension.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/StrWordCountFunctionDynamicReturnTypeExtension.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/TypeSpecifierFactory.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/ParentDirectoryRelativePathHelper.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/RelativePathHelper.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Broker/BrokerFactory.php";i:1603454189;s:148:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Cache/FileCacheStorage.php";i:1603454189;s:144:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Cache/CacheStorage.php";i:1603454189;s:143:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/RichParser.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/SimpleParser.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/PhpParserDecorator.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/Parser.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/Parser/Php7.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/ParserAbstract.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/StubPhpDocProvider.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider/ReflectionProviderFactory.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider.php";i:1603454189;s:187:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/Reflector/MemoizingClassReflector.php";i:1603454189;s:188:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/Reflector/ClassReflector.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/Reflector/Reflector.php";i:1603454189;s:190:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/Reflector/MemoizingFunctionReflector.php";i:1603454189;s:191:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/Reflector/FunctionReflector.php";i:1603454189;s:190:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/Reflector/MemoizingConstantReflector.php";i:1603454189;s:191:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/Reflector/ConstantReflector.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/BetterReflectionProvider.php";i:1603454189;s:142:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/file/Read.php";i:1603454189;s:142:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/file/File.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/file/Generic.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/Stream.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Stream.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/event/Listenable.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/event/Source.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Pathable.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Statable.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Touchable.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Bufferable.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Lockable.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Pointable.php";i:1603454189;s:150:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/In.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/event/Listens.php";i:1603454189;s:188:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider/ClassBlacklistReflectionProvider.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Runtime/RuntimeReflectionProvider.php";i:1603454189;s:190:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/BetterReflectionSourceLocatorFactory.php";i:1603454189;s:218:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/PhpStormStubsSourceStubber.php";i:1603454189;s:205:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/SourceStubber.php";i:1603454189;s:215:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/ReflectionSourceStubber.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/Lexer.php";i:1603454189;s:150:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/PathRoutingParser.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/RawErrorFormatter.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/ErrorFormatter.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/BaselineNeonErrorFormatter.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/TableErrorFormatter.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/CheckstyleErrorFormatter.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/JsonErrorFormatter.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/JunitErrorFormatter.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/GitlabErrorFormatter.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/GithubErrorFormatter.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/TeamcityErrorFormatter.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassInInstanceOfRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Exceptions/CaughtExceptionExistenceRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/CallToNonExistentFunctionRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ClosureUsesThisRule.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/CallMethodsRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/CallStaticMethodsRule.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/OverridingMethodRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Missing/MissingClosureNativeReturnTypehintRule.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Missing/MissingReturnRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Namespaces/ExistingNamesInGroupUseRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Namespaces/ExistingNamesInUseRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Operators/InvalidIncDecOperationRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/AccessPropertiesRule.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/AccessStaticPropertiesRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/ExistingClassesInPropertiesRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/UninitializedPropertyRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/WritingToReadOnlyPropertiesRule.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/ReadingWriteOnlyPropertiesRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/CompactVariablesRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/DefinedVariableRule.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Regexp/RegularExpressionPatternRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Whitespace/FileWhitespaceRule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/VariableCertaintyNullCoalesceRule.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/MixinRule.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/CallCallablesRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/InvalidPhpDocVarTagTypeRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/AppendedArrayKeyTypeRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/InvalidKeyInArrayDimFetchRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/InvalidKeyInArrayItemRule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/NonexistentOffsetInArrayDimFetchRule.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ReturnTypeRule.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generators/YieldFromTypeRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generators/YieldInGeneratorRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ImpossibleInstanceOfRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/BooleanAndConstantConditionRule.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/BooleanOrConstantConditionRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/BooleanNotConstantConditionRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/UnusedPrivateConstantRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/UnusedPrivateMethodRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/UnusedPrivatePropertyRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ElseIfConstantConditionRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/IfConstantConditionRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeFunctionCallRule.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeMethodCallRule.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeStaticMethodCallRule.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/StrictComparisonOfDifferentTypesRule.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/TernaryOperatorConstantConditionRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/UnreachableIfBranchesRule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/UnreachableTernaryElseBranchRule.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideMethodReturnTypehintRule.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/IssetRule.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/NullCoalesceRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/RandomIntParametersRule.php";i:1603454189;s:169:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/PhpDoc/PHPUnit/MockObjectTypeNodeResolverExtension.php";i:1596634130;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeNodeResolverAwareExtension.php";i:1603454189;s:176:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertFunctionTypeSpecifyingExtension.php";i:1596634130;s:174:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertMethodTypeSpecifyingExtension.php";i:1596634130;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/MethodTypeSpecifyingExtension.php";i:1603454189;s:180:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertStaticMethodTypeSpecifyingExtension.php";i:1596634130;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/StaticMethodTypeSpecifyingExtension.php";i:1603454189;s:174:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/InvocationMockerDynamicReturnTypeExtension.php";i:1596634130;s:169:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/MockBuilderDynamicReturnTypeExtension.php";i:1596634130;s:168:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/MockObjectDynamicReturnTypeExtension.php";i:1596634130;s:169:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/DeprecatedClassHelper.php";i:1595343150;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Container.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/utils/src/Utils/SmartObject.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Php/PhpVersionFactory.php";i:1603454189;s:140:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Php/PhpVersion.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/LazyTypeNodeResolverExtensionRegistryProvider.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeNodeResolverExtensionRegistryProvider.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/ResultCache/ResultCacheManager.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/ResultCache/ResultCacheManagerFactory.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/MemoizingContainer.php";i:1603454189;s:201:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Reflection/LazyClassReflectionExtensionRegistryProvider.php";i:1603454189;s:197:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Reflection/ClassReflectionExtensionRegistryProvider.php";i:1603454189;s:197:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Type/LazyDynamicReturnTypeExtensionRegistryProvider.php";i:1603454189;s:193:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Type/DynamicReturnTypeExtensionRegistryProvider.php";i:1603454189;s:202:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Type/LazyOperatorTypeSpecifyingExtensionRegistryProvider.php";i:1603454189;s:198:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Type/OperatorTypeSpecifyingExtensionRegistryProvider.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/PhpFunctionReflection.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/FunctionReflection.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionWithFilename.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/FunctionReflectionFactory.php";i:1603454189;s:199:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocator.php";i:1603454189;s:206:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocatorFactory.php";i:1603454189;s:197:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedPsrAutoloaderLocator.php";i:1603454189;s:204:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedPsrAutoloaderLocatorFactory.php";i:1603454189;s:200:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocator.php";i:1603454189;s:207:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocatorFactory.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/PhpMethodReflection.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/MethodReflection.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ClassMemberReflection.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/PhpMethodReflectionFactory.php";i:1603454189;s:186:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider/LazyReflectionProviderProvider.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider/ReflectionProviderProvider.php";i:1603454189;s:148:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/TypeSpecifier.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FuzzyRelativePathHelper.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/SimpleRelativePathHelper.php";i:1603454189;s:139:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Broker/Broker.php";i:1603454189;s:140:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Registry.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/compiler/Llk/Llk.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/compiler/Llk/Parser.php";i:1603454189;s:185:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/BetterReflectionProviderFactory.php";i:1603454189;}i:3;a:435:{i:0;s:53:"PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule";i:1;s:18:"PHPStan\Rules\Rule";i:2;s:57:"PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule";i:3;s:39:"PHPStan\Rules\Classes\ClassConstantRule";i:4;s:46:"PHPStan\Rules\Classes\DuplicateDeclarationRule";i:5;s:58:"PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule";i:6;s:59:"PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule";i:7;s:53:"PHPStan\Rules\Classes\ExistingClassInClassExtendsRule";i:8;s:49:"PHPStan\Rules\Classes\ExistingClassInTraitUseRule";i:9;s:39:"PHPStan\Rules\Classes\InstantiationRule";i:10;s:35:"PHPStan\Rules\Classes\NewStaticRule";i:11;s:44:"PHPStan\Rules\Exceptions\ThrowExpressionRule";i:12;s:52:"PHPStan\Rules\Functions\CallToFunctionParametersRule";i:13;s:67:"PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule";i:14;s:61:"PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule";i:15;s:54:"PHPStan\Rules\Functions\ExistingClassesInTypehintsRule";i:16;s:41:"PHPStan\Rules\Functions\InnerFunctionRule";i:17;s:44:"PHPStan\Rules\Functions\PrintfParametersRule";i:18;s:58:"PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule";i:19;s:52:"PHPStan\Rules\Methods\ExistingClassesInTypehintsRule";i:20;s:53:"PHPStan\Rules\Methods\MissingMethodImplementationRule";i:21;s:53:"PHPStan\Rules\Properties\AccessPropertiesInAssignRule";i:22;s:59:"PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule";i:23;s:60:"PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule";i:24;s:33:"PHPStan\Rules\Variables\UnsetRule";i:25;s:53:"PHPStan\Rules\Classes\UnusedConstructorParametersRule";i:26;s:36:"PHPStan\Rules\Constants\ConstantRule";i:27;s:45:"PHPStan\Rules\Functions\UnusedClosureUsesRule";i:28;s:52:"PHPStan\Rules\Variables\VariableCertaintyInIssetRule";i:29;s:27:"PHPStan\Rules\Cast\EchoRule";i:30;s:34:"PHPStan\Rules\Cast\InvalidCastRule";i:31;s:50:"PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule";i:32;s:28:"PHPStan\Rules\Cast\PrintRule";i:33;s:60:"PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule";i:34;s:41:"PHPStan\Rules\Generics\ClassAncestorsRule";i:35;s:44:"PHPStan\Rules\Generics\ClassTemplateTypeRule";i:36;s:47:"PHPStan\Rules\Generics\FunctionTemplateTypeRule";i:37;s:52:"PHPStan\Rules\Generics\FunctionSignatureVarianceRule";i:38;s:45:"PHPStan\Rules\Generics\InterfaceAncestorsRule";i:39;s:48:"PHPStan\Rules\Generics\InterfaceTemplateTypeRule";i:40;s:45:"PHPStan\Rules\Generics\MethodTemplateTypeRule";i:41;s:50:"PHPStan\Rules\Generics\MethodSignatureVarianceRule";i:42;s:44:"PHPStan\Rules\Generics\TraitTemplateTypeRule";i:43;s:58:"PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule";i:44;s:50:"PHPStan\Rules\Operators\InvalidBinaryOperationRule";i:45;s:49:"PHPStan\Rules\Operators\InvalidUnaryOperationRule";i:46;s:54:"PHPStan\Rules\Operators\InvalidComparisonOperationRule";i:47;s:47:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule";i:48;s:55:"PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule";i:49;s:46:"PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule";i:50;s:45:"PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule";i:51;s:49:"PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule";i:52;s:50:"PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule";i:53;s:46:"PHPStan\Rules\Arrays\AppendedArrayItemTypeRule";i:54;s:42:"PHPStan\Rules\Arrays\IterableInForeachRule";i:55;s:47:"PHPStan\Rules\Arrays\OffsetAccessAssignmentRule";i:56;s:45:"PHPStan\Rules\Arrays\OffsetAccessAssignOpRule";i:57;s:52:"PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule";i:58;s:46:"PHPStan\Rules\Arrays\UnpackIterableInArrayRule";i:59;s:51:"PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule";i:60;s:45:"PHPStan\Rules\Functions\ClosureReturnTypeRule";i:61;s:38:"PHPStan\Rules\Generators\YieldTypeRule";i:62;s:36:"PHPStan\Rules\Methods\ReturnTypeRule";i:63;s:66:"PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule";i:64;s:54:"PHPStan\Rules\Properties\TypesAssignedToPropertiesRule";i:65;s:37:"PHPStan\Rules\Variables\ThrowTypeRule";i:66;s:43:"PHPStan\Rules\Variables\VariableCloningRule";i:67;s:36:"PHPStan\Rules\Arrays\DeadForeachRule";i:68;s:71:"PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule";i:69;s:31:"PHPStan\Rules\DeadCode\NoopRule";i:70;s:47:"PHPStan\Rules\DeadCode\UnreachableStatementRule";i:71;s:38:"PHPStan\Rules\Exceptions\DeadCatchRule";i:72;s:67:"PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule";i:73;s:63:"PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule";i:74;s:69:"PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule";i:75;s:69:"PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule";i:76;s:63:"PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule";i:77;s:64:"PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule";i:78;s:60:"PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule";i:79;s:57:"PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule";i:80;s:56:"PHPStan\Rules\Methods\MissingMethodParameterTypehintRule";i:81;s:53:"PHPStan\Rules\Methods\MissingMethodReturnTypehintRule";i:82;s:52:"PHPStan\Rules\Properties\MissingPropertyTypehintRule";i:83;s:55:"PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule";i:84;s:61:"PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule";i:85;s:55:"PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule";i:86;s:53:"PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule";i:87;s:59:"PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule";i:88;s:66:"PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule";i:89;s:54:"PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule";i:90;s:66:"PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule";i:91;s:59:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule";i:92;s:63:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule";i:93;s:61:"PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule";i:94;s:71:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule";i:95;s:67:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule";i:96;s:68:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule";i:97;s:52:"PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule";i:98;s:53:"PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule";i:99;s:24:"PhpParser\BuilderFactory";i:100;s:27:"PHPStan\Parser\LexerFactory";i:101;s:34:"PhpParser\NodeVisitor\NameResolver";i:102;s:29:"PhpParser\NodeVisitorAbstract";i:103;s:21:"PhpParser\NodeVisitor";i:104;s:43:"PhpParser\NodeVisitor\NodeConnectingVisitor";i:105;s:32:"PhpParser\PrettyPrinter\Standard";i:106;s:31:"PhpParser\PrettyPrinterAbstract";i:107;s:39:"PHPStan\Broker\AnonymousClassNameHelper";i:108;s:36:"PHPStan\Php\PhpVersionFactoryFactory";i:109;s:32:"PHPStan\PhpDocParser\Lexer\Lexer";i:110;s:38:"PHPStan\PhpDocParser\Parser\TypeParser";i:111;s:43:"PHPStan\PhpDocParser\Parser\ConstExprParser";i:112;s:40:"PHPStan\PhpDocParser\Parser\PhpDocParser";i:113;s:40:"PHPStan\PhpDoc\PhpDocInheritanceResolver";i:114;s:33:"PHPStan\PhpDoc\PhpDocNodeResolver";i:115;s:35:"PHPStan\PhpDoc\PhpDocStringResolver";i:116;s:36:"PHPStan\PhpDoc\ConstExprNodeResolver";i:117;s:61:"PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension";i:118;s:40:"PHPStan\PhpDoc\TypeNodeResolverExtension";i:119;s:31:"PHPStan\PhpDoc\TypeNodeResolver";i:120;s:33:"PHPStan\PhpDoc\TypeStringResolver";i:121;s:28:"PHPStan\PhpDoc\StubValidator";i:122;s:25:"PHPStan\Analyser\Analyser";i:123;s:29:"PHPStan\Analyser\FileAnalyser";i:124;s:35:"PHPStan\Analyser\IgnoredErrorHelper";i:125;s:33:"PHPStan\Analyser\LazyScopeFactory";i:126;s:29:"PHPStan\Analyser\ScopeFactory";i:127;s:34:"PHPStan\Analyser\NodeScopeResolver";i:128;s:47:"PHPStan\Analyser\ResultCache\ResultCacheClearer";i:129;s:19:"PHPStan\Cache\Cache";i:130;s:34:"PHPStan\Command\AnalyseApplication";i:131;s:30:"PHPStan\Command\AnalyserRunner";i:132;s:32:"PHPStan\Command\FixerApplication";i:133;s:37:"PHPStan\Command\IgnoredRegexValidator";i:134;s:35:"PHPStan\Dependency\DependencyDumper";i:135;s:37:"PHPStan\Dependency\DependencyResolver";i:136;s:38:"PHPStan\Dependency\ExportedNodeFetcher";i:137;s:39:"PHPStan\Dependency\ExportedNodeResolver";i:138;s:38:"PHPStan\Dependency\ExportedNodeVisitor";i:139;s:48:"PHPStan\DependencyInjection\Nette\NetteContainer";i:140;s:37:"PHPStan\DependencyInjection\Container";i:141;s:54:"PHPStan\DependencyInjection\DerivativeContainerFactory";i:142;s:23:"PHPStan\File\FileHelper";i:143;s:25:"PHPStan\File\FileExcluder";i:144;s:23:"PHPStan\File\FileFinder";i:145;s:24:"PHPStan\File\FileMonitor";i:146;s:41:"PHPStan\NodeVisitor\StatementOrderVisitor";i:147;s:33:"PHPStan\Parallel\ParallelAnalyser";i:148;s:26:"PHPStan\Parallel\Scheduler";i:149;s:27:"PHPStan\Parser\CachedParser";i:150;s:21:"PHPStan\Parser\Parser";i:151;s:42:"PHPStan\Parser\FunctionCallStatementFinder";i:152;s:34:"PHPStan\Parser\NodeChildrenVisitor";i:153;s:30:"PHPStan\Process\CpuCoreCounter";i:154;s:73:"PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension";i:155;s:50:"PHPStan\Reflection\MethodsClassReflectionExtension";i:156;s:76:"PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension";i:157;s:53:"PHPStan\Reflection\PropertiesClassReflectionExtension";i:158;s:64:"PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor";i:159;s:66:"PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher";i:160;s:71:"PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator";i:161;s:78:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\SourceLocator";i:162;s:96:"PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker";i:163;s:91:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository";i:164;s:92:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository";i:165;s:61:"PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension";i:166;s:64:"PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension";i:167;s:50:"PHPStan\Reflection\Php\PhpClassReflectionExtension";i:168;s:68:"PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension";i:169;s:39:"PHPStan\Reflection\BrokerAwareExtension";i:170;s:64:"PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider";i:171;s:50:"PHPStan\Reflection\SignatureMap\SignatureMapParser";i:172;s:60:"PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider";i:173;s:52:"PHPStan\Reflection\SignatureMap\SignatureMapProvider";i:174;s:56:"PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider";i:175;s:59:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory";i:176;s:39:"PHPStan\Rules\ClassCaseSensitivityCheck";i:177;s:52:"PHPStan\Rules\Comparison\ConstantConditionRuleHelper";i:178;s:50:"PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper";i:179;s:41:"PHPStan\Rules\FunctionCallParametersCheck";i:180;s:37:"PHPStan\Rules\FunctionDefinitionCheck";i:181;s:37:"PHPStan\Rules\FunctionReturnTypeCheck";i:182;s:44:"PHPStan\Rules\Generics\GenericAncestorsCheck";i:183;s:45:"PHPStan\Rules\Generics\GenericObjectTypeCheck";i:184;s:40:"PHPStan\Rules\Generics\TemplateTypeCheck";i:185;s:36:"PHPStan\Rules\Generics\VarianceCheck";i:186;s:24:"PHPStan\Rules\IssetCheck";i:187;s:41:"PHPStan\Rules\Methods\MethodSignatureRule";i:188;s:34:"PHPStan\Rules\MissingTypehintCheck";i:189;s:65:"PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider";i:190;s:61:"PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider";i:191;s:43:"PHPStan\Rules\Properties\PropertyDescriptor";i:192;s:49:"PHPStan\Rules\Properties\PropertyReflectionFinder";i:193;s:29:"PHPStan\Rules\RegistryFactory";i:194;s:29:"PHPStan\Rules\RuleLevelHelper";i:195;s:43:"PHPStan\Rules\UnusedFunctionParametersCheck";i:196;s:27:"PHPStan\Type\FileTypeMapper";i:197;s:57:"PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension";i:198;s:47:"PHPStan\Type\DynamicFunctionReturnTypeExtension";i:199;s:53:"PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension";i:200;s:57:"PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension";i:201;s:65:"PHPStan\Type\Php\ArrayFilterFunctionReturnTypeReturnTypeExtension";i:202;s:51:"PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension";i:203;s:62:"PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension";i:204;s:44:"PHPStan\Type\FunctionTypeSpecifyingExtension";i:205;s:44:"PHPStan\Analyser\TypeSpecifierAwareExtension";i:206;s:56:"PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension";i:207;s:55:"PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension";i:208;s:60:"PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension";i:209;s:52:"PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension";i:210;s:61:"PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension";i:211;s:52:"PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension";i:212;s:55:"PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension";i:213;s:54:"PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension";i:214;s:54:"PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension";i:215;s:62:"PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension";i:216;s:62:"PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension";i:217;s:63:"PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension";i:218;s:54:"PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension";i:219;s:54:"PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension";i:220;s:51:"PHPStan\Type\DynamicStaticMethodReturnTypeExtension";i:221;s:56:"PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension";i:222;s:45:"PHPStan\Type\DynamicMethodReturnTypeExtension";i:223;s:62:"PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension";i:224;s:49:"PHPStan\Type\Php\CountFunctionReturnTypeExtension";i:225;s:53:"PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension";i:226;s:44:"PHPStan\Type\Php\CurlInitReturnTypeExtension";i:227;s:48:"PHPStan\Type\Php\DateFunctionReturnTypeExtension";i:228;s:48:"PHPStan\Type\Php\DsMapDynamicReturnTypeExtension";i:229;s:58:"PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension";i:230;s:58:"PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension";i:231;s:52:"PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension";i:232;s:57:"PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension";i:233;s:51:"PHPStan\Type\Php\GetClassDynamicReturnTypeExtension";i:234;s:65:"PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension";i:235;s:63:"PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension";i:236;s:53:"PHPStan\Type\Php\HashHmacFunctionsReturnTypeExtension";i:237;s:49:"PHPStan\Type\Php\HashFunctionsReturnTypeExtension";i:238;s:65:"PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension";i:239;s:47:"PHPStan\Type\Php\StatDynamicReturnTypeExtension";i:240;s:52:"PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension";i:241;s:54:"PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension";i:242;s:50:"PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension";i:243;s:59:"PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension";i:244;s:52:"PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension";i:245;s:59:"PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension";i:246;s:64:"PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension";i:247;s:60:"PHPStan\Type\Php\VarExportFunctionDynamicReturnTypeExtension";i:248;s:47:"PHPStan\Type\Php\MbFunctionsReturnTypeExtension";i:249;s:61:"PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension";i:250;s:53:"PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension";i:251;s:50:"PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension";i:252;s:59:"PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension";i:253;s:65:"PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension";i:254;s:47:"PHPStan\Type\Php\PowFunctionReturnTypeExtension";i:255;s:53:"PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension";i:256;s:53:"PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension";i:257;s:49:"PHPStan\Type\Php\RangeFunctionReturnTypeExtension";i:258;s:54:"PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension";i:259;s:59:"PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension";i:260;s:54:"PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension";i:261;s:55:"PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension";i:262;s:55:"PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension";i:263;s:53:"PHPStan\Type\Php\IsIntFunctionTypeSpecifyingExtension";i:264;s:55:"PHPStan\Type\Php\IsFloatFunctionTypeSpecifyingExtension";i:265;s:54:"PHPStan\Type\Php\IsNullFunctionTypeSpecifyingExtension";i:266;s:55:"PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension";i:267;s:54:"PHPStan\Type\Php\IsBoolFunctionTypeSpecifyingExtension";i:268;s:58:"PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension";i:269;s:59:"PHPStan\Type\Php\IsCountableFunctionTypeSpecifyingExtension";i:270;s:58:"PHPStan\Type\Php\IsResourceFunctionTypeSpecifyingExtension";i:271;s:58:"PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension";i:272;s:56:"PHPStan\Type\Php\IsStringFunctionTypeSpecifyingExtension";i:273;s:60:"PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension";i:274;s:56:"PHPStan\Type\Php\IsObjectFunctionTypeSpecifyingExtension";i:275;s:57:"PHPStan\Type\Php\IsNumericFunctionTypeSpecifyingExtension";i:276;s:56:"PHPStan\Type\Php\IsScalarFunctionTypeSpecifyingExtension";i:277;s:51:"PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension";i:278;s:59:"PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension";i:279;s:66:"PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension";i:280;s:63:"PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension";i:281;s:52:"PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension";i:282;s:58:"PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension";i:283;s:63:"PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension";i:284;s:37:"PHPStan\Analyser\TypeSpecifierFactory";i:285;s:46:"PHPStan\File\ParentDirectoryRelativePathHelper";i:286;s:31:"PHPStan\File\RelativePathHelper";i:287;s:28:"PHPStan\Broker\BrokerFactory";i:288;s:30:"PHPStan\Cache\FileCacheStorage";i:289;s:26:"PHPStan\Cache\CacheStorage";i:290;s:25:"PHPStan\Parser\RichParser";i:291;s:27:"PHPStan\Parser\SimpleParser";i:292;s:33:"PHPStan\Parser\PhpParserDecorator";i:293;s:16:"PhpParser\Parser";i:294;s:21:"PhpParser\Parser\Php7";i:295;s:24:"PhpParser\ParserAbstract";i:296;s:33:"PHPStan\PhpDoc\StubPhpDocProvider";i:297;s:63:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory";i:298;s:37:"PHPStan\Reflection\ReflectionProvider";i:299;s:69:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector";i:300;s:70:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector";i:301;s:65:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\Reflector";i:302;s:72:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingFunctionReflector";i:303;s:73:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector";i:304;s:72:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingConstantReflector";i:305;s:73:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector";i:306;s:60:"PHPStan\Reflection\BetterReflection\BetterReflectionProvider";i:307;s:13:"Hoa\File\Read";i:308;s:13:"Hoa\File\File";i:309;s:16:"Hoa\File\Generic";i:310;s:17:"Hoa\Stream\Stream";i:311;s:25:"Hoa\Stream\IStream\Stream";i:312;s:20:"Hoa\Event\Listenable";i:313;s:16:"Hoa\Event\Source";i:314;s:27:"Hoa\Stream\IStream\Pathable";i:315;s:27:"Hoa\Stream\IStream\Statable";i:316;s:28:"Hoa\Stream\IStream\Touchable";i:317;s:29:"Hoa\Stream\IStream\Bufferable";i:318;s:27:"Hoa\Stream\IStream\Lockable";i:319;s:28:"Hoa\Stream\IStream\Pointable";i:320;s:21:"Hoa\Stream\IStream\In";i:321;s:17:"Hoa\Event\Listens";i:322;s:70:"PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider";i:323;s:52:"PHPStan\Reflection\Runtime\RuntimeReflectionProvider";i:324;s:72:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory";i:325;s:100:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber";i:326;s:87:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\SourceStubber";i:327;s:97:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber";i:328;s:25:"PhpParser\Lexer\Emulative";i:329;s:15:"PhpParser\Lexer";i:330;s:32:"PHPStan\Parser\PathRoutingParser";i:331;s:48:"PHPStan\Command\ErrorFormatter\RawErrorFormatter";i:332;s:45:"PHPStan\Command\ErrorFormatter\ErrorFormatter";i:333;s:57:"PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter";i:334;s:50:"PHPStan\Command\ErrorFormatter\TableErrorFormatter";i:335;s:55:"PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter";i:336;s:49:"PHPStan\Command\ErrorFormatter\JsonErrorFormatter";i:337;s:50:"PHPStan\Command\ErrorFormatter\JunitErrorFormatter";i:338;s:51:"PHPStan\Command\ErrorFormatter\GitlabErrorFormatter";i:339;s:51:"PHPStan\Command\ErrorFormatter\GithubErrorFormatter";i:340;s:53:"PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter";i:341;s:51:"PHPStan\Rules\Classes\ExistingClassInInstanceOfRule";i:342;s:53:"PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule";i:343;s:53:"PHPStan\Rules\Functions\CallToNonExistentFunctionRule";i:344;s:43:"PHPStan\Rules\Functions\ClosureUsesThisRule";i:345;s:37:"PHPStan\Rules\Methods\CallMethodsRule";i:346;s:43:"PHPStan\Rules\Methods\CallStaticMethodsRule";i:347;s:42:"PHPStan\Rules\Methods\OverridingMethodRule";i:348;s:60:"PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule";i:349;s:39:"PHPStan\Rules\Missing\MissingReturnRule";i:350;s:52:"PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule";i:351;s:47:"PHPStan\Rules\Namespaces\ExistingNamesInUseRule";i:352;s:50:"PHPStan\Rules\Operators\InvalidIncDecOperationRule";i:353;s:45:"PHPStan\Rules\Properties\AccessPropertiesRule";i:354;s:51:"PHPStan\Rules\Properties\AccessStaticPropertiesRule";i:355;s:56:"PHPStan\Rules\Properties\ExistingClassesInPropertiesRule";i:356;s:50:"PHPStan\Rules\Properties\UninitializedPropertyRule";i:357;s:56:"PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule";i:358;s:55:"PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule";i:359;s:44:"PHPStan\Rules\Variables\CompactVariablesRule";i:360;s:43:"PHPStan\Rules\Variables\DefinedVariableRule";i:361;s:49:"PHPStan\Rules\Regexp\RegularExpressionPatternRule";i:362;s:43:"PHPStan\Rules\Whitespace\FileWhitespaceRule";i:363;s:57:"PHPStan\Rules\Variables\VariableCertaintyNullCoalesceRule";i:364;s:31:"PHPStan\Rules\Classes\MixinRule";i:365;s:41:"PHPStan\Rules\Functions\CallCallablesRule";i:366;s:48:"PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule";i:367;s:45:"PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule";i:368;s:50:"PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule";i:369;s:46:"PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule";i:370;s:57:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule";i:371;s:38:"PHPStan\Rules\Functions\ReturnTypeRule";i:372;s:42:"PHPStan\Rules\Generators\YieldFromTypeRule";i:373;s:45:"PHPStan\Rules\Generators\YieldInGeneratorRule";i:374;s:46:"PHPStan\Rules\Classes\ImpossibleInstanceOfRule";i:375;s:56:"PHPStan\Rules\Comparison\BooleanAndConstantConditionRule";i:376;s:55:"PHPStan\Rules\Comparison\BooleanOrConstantConditionRule";i:377;s:56:"PHPStan\Rules\Comparison\BooleanNotConstantConditionRule";i:378;s:48:"PHPStan\Rules\DeadCode\UnusedPrivateConstantRule";i:379;s:46:"PHPStan\Rules\DeadCode\UnusedPrivateMethodRule";i:380;s:48:"PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule";i:381;s:52:"PHPStan\Rules\Comparison\ElseIfConstantConditionRule";i:382;s:48:"PHPStan\Rules\Comparison\IfConstantConditionRule";i:383;s:60:"PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule";i:384;s:58:"PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule";i:385;s:64:"PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule";i:386;s:61:"PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule";i:387;s:61:"PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule";i:388;s:50:"PHPStan\Rules\Comparison\UnreachableIfBranchesRule";i:389;s:57:"PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule";i:390;s:62:"PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule";i:391;s:33:"PHPStan\Rules\Variables\IssetRule";i:392;s:40:"PHPStan\Rules\Variables\NullCoalesceRule";i:393;s:47:"PHPStan\Rules\Functions\RandomIntParametersRule";i:394;s:58:"PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension";i:395;s:45:"PHPStan\PhpDoc\TypeNodeResolverAwareExtension";i:396;s:65:"PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension";i:397;s:63:"PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension";i:398;s:42:"PHPStan\Type\MethodTypeSpecifyingExtension";i:399;s:69:"PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension";i:400;s:48:"PHPStan\Type\StaticMethodTypeSpecifyingExtension";i:401;s:63:"PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension";i:402;s:58:"PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension";i:403;s:57:"PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension";i:404;s:48:"PHPStan\Rules\Deprecations\DeprecatedClassHelper";i:405;s:41:"_HumbugBox96739a27ace4\Nette\DI\Container";i:406;s:40:"_HumbugBox96739a27ace4\Nette\SmartObject";i:407;s:22:"PHPStan\Php\PhpVersion";i:408;s:29:"PHPStan\Php\PhpVersionFactory";i:409;s:56:"PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider";i:410;s:47:"PHPStan\Analyser\ResultCache\ResultCacheManager";i:411;s:54:"PHPStan\Analyser\ResultCache\ResultCacheManagerFactory";i:412;s:79:"PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider";i:413;s:75:"PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider";i:414;s:80:"PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider";i:415;s:44:"PHPStan\Reflection\Php\PhpFunctionReflection";i:416;s:37:"PHPStan\Reflection\FunctionReflection";i:417;s:41:"PHPStan\Reflection\ReflectionWithFilename";i:418;s:44:"PHPStan\Reflection\FunctionReflectionFactory";i:419;s:81:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocator";i:420;s:88:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory";i:421;s:79:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator";i:422;s:86:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory";i:423;s:82:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator";i:424;s:89:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory";i:425;s:42:"PHPStan\Reflection\Php\PhpMethodReflection";i:426;s:35:"PHPStan\Reflection\MethodReflection";i:427;s:40:"PHPStan\Reflection\ClassMemberReflection";i:428;s:49:"PHPStan\Reflection\Php\PhpMethodReflectionFactory";i:429;s:64:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider";i:430;s:30:"PHPStan\Analyser\TypeSpecifier";i:431;s:21:"PHPStan\Broker\Broker";i:432;s:22:"PHPStan\Rules\Registry";i:433;s:23:"Hoa\Compiler\Llk\Parser";i:434;s:67:"PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory";}i:4;a:257:{i:0;s:71:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory::create";i:1;s:66:"PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule::__construct";i:2;s:52:"PHPStan\Rules\Classes\ClassConstantRule::__construct";i:3;s:71:"PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule::__construct";i:4;s:72:"PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule::__construct";i:5;s:66:"PHPStan\Rules\Classes\ExistingClassInClassExtendsRule::__construct";i:6;s:62:"PHPStan\Rules\Classes\ExistingClassInTraitUseRule::__construct";i:7;s:52:"PHPStan\Rules\Classes\InstantiationRule::__construct";i:8;s:57:"PHPStan\Rules\Exceptions\ThrowExpressionRule::__construct";i:9;s:65:"PHPStan\Rules\Functions\CallToFunctionParametersRule::__construct";i:10;s:80:"PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule::__construct";i:11;s:74:"PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule::__construct";i:12;s:67:"PHPStan\Rules\Functions\ExistingClassesInTypehintsRule::__construct";i:13;s:65:"PHPStan\Rules\Methods\ExistingClassesInTypehintsRule::__construct";i:14;s:66:"PHPStan\Rules\Properties\AccessPropertiesInAssignRule::__construct";i:15;s:72:"PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule::__construct";i:16;s:73:"PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule::__construct";i:17;s:66:"PHPStan\Rules\Classes\UnusedConstructorParametersRule::__construct";i:18;s:58:"PHPStan\Rules\Functions\UnusedClosureUsesRule::__construct";i:19;s:40:"PHPStan\Rules\Cast\EchoRule::__construct";i:20;s:47:"PHPStan\Rules\Cast\InvalidCastRule::__construct";i:21;s:63:"PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule::__construct";i:22;s:41:"PHPStan\Rules\Cast\PrintRule::__construct";i:23;s:54:"PHPStan\Rules\Generics\ClassAncestorsRule::__construct";i:24;s:57:"PHPStan\Rules\Generics\ClassTemplateTypeRule::__construct";i:25;s:60:"PHPStan\Rules\Generics\FunctionTemplateTypeRule::__construct";i:26;s:65:"PHPStan\Rules\Generics\FunctionSignatureVarianceRule::__construct";i:27;s:58:"PHPStan\Rules\Generics\InterfaceAncestorsRule::__construct";i:28;s:61:"PHPStan\Rules\Generics\InterfaceTemplateTypeRule::__construct";i:29;s:58:"PHPStan\Rules\Generics\MethodTemplateTypeRule::__construct";i:30;s:63:"PHPStan\Rules\Generics\MethodSignatureVarianceRule::__construct";i:31;s:57:"PHPStan\Rules\Generics\TraitTemplateTypeRule::__construct";i:32;s:63:"PHPStan\Rules\Operators\InvalidBinaryOperationRule::__construct";i:33;s:67:"PHPStan\Rules\Operators\InvalidComparisonOperationRule::__construct";i:34;s:60:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule::__construct";i:35;s:68:"PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule::__construct";i:36;s:59:"PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule::__construct";i:37;s:58:"PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule::__construct";i:38;s:62:"PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule::__construct";i:39;s:63:"PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule::__construct";i:40;s:59:"PHPStan\Rules\Arrays\AppendedArrayItemTypeRule::__construct";i:41;s:55:"PHPStan\Rules\Arrays\IterableInForeachRule::__construct";i:42;s:60:"PHPStan\Rules\Arrays\OffsetAccessAssignmentRule::__construct";i:43;s:58:"PHPStan\Rules\Arrays\OffsetAccessAssignOpRule::__construct";i:44;s:65:"PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule::__construct";i:45;s:59:"PHPStan\Rules\Arrays\UnpackIterableInArrayRule::__construct";i:46;s:64:"PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule::__construct";i:47;s:58:"PHPStan\Rules\Functions\ClosureReturnTypeRule::__construct";i:48;s:51:"PHPStan\Rules\Generators\YieldTypeRule::__construct";i:49;s:49:"PHPStan\Rules\Methods\ReturnTypeRule::__construct";i:50;s:79:"PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule::__construct";i:51;s:67:"PHPStan\Rules\Properties\TypesAssignedToPropertiesRule::__construct";i:52;s:50:"PHPStan\Rules\Variables\ThrowTypeRule::__construct";i:53;s:56:"PHPStan\Rules\Variables\VariableCloningRule::__construct";i:54;s:44:"PHPStan\Rules\DeadCode\NoopRule::__construct";i:55;s:80:"PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule::__construct";i:56;s:76:"PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule::__construct";i:57;s:82:"PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule::__construct";i:58;s:73:"PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule::__construct";i:59;s:70:"PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule::__construct";i:60;s:69:"PHPStan\Rules\Methods\MissingMethodParameterTypehintRule::__construct";i:61;s:66:"PHPStan\Rules\Methods\MissingMethodReturnTypehintRule::__construct";i:62;s:65:"PHPStan\Rules\Properties\MissingPropertyTypehintRule::__construct";i:63;s:68:"PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule::__construct";i:64;s:74:"PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule::__construct";i:65;s:68:"PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule::__construct";i:66;s:66:"PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule::__construct";i:67;s:72:"PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule::__construct";i:68;s:79:"PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule::__construct";i:69;s:67:"PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule::__construct";i:70;s:79:"PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule::__construct";i:71;s:72:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule::__construct";i:72;s:76:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule::__construct";i:73;s:74:"PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule::__construct";i:74;s:84:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule::__construct";i:75;s:80:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule::__construct";i:76;s:81:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule::__construct";i:77;s:66:"PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule::__construct";i:78;s:40:"PHPStan\Parser\LexerFactory::__construct";i:79;s:47:"PhpParser\NodeVisitor\NameResolver::__construct";i:80;s:44:"PhpParser\PrettyPrinterAbstract::__construct";i:81;s:52:"PHPStan\Broker\AnonymousClassNameHelper::__construct";i:82;s:37:"PHPStan\Php\PhpVersionFactory::create";i:83;s:44:"PHPStan\Php\PhpVersionFactoryFactory::create";i:84;s:49:"PHPStan\Php\PhpVersionFactoryFactory::__construct";i:85;s:51:"PHPStan\PhpDocParser\Parser\TypeParser::__construct";i:86;s:53:"PHPStan\PhpDocParser\Parser\PhpDocParser::__construct";i:87;s:53:"PHPStan\PhpDoc\PhpDocInheritanceResolver::__construct";i:88;s:46:"PHPStan\PhpDoc\PhpDocNodeResolver::__construct";i:89;s:48:"PHPStan\PhpDoc\PhpDocStringResolver::__construct";i:90;s:74:"PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension::__construct";i:91;s:44:"PHPStan\PhpDoc\TypeNodeResolver::__construct";i:92;s:73:"PHPStan\PhpDoc\LazyTypeNodeResolverExtensionRegistryProvider::__construct";i:93;s:46:"PHPStan\PhpDoc\TypeStringResolver::__construct";i:94;s:41:"PHPStan\PhpDoc\StubValidator::__construct";i:95;s:38:"PHPStan\Analyser\Analyser::__construct";i:96;s:42:"PHPStan\Analyser\FileAnalyser::__construct";i:97;s:48:"PHPStan\Analyser\IgnoredErrorHelper::__construct";i:98;s:46:"PHPStan\Analyser\LazyScopeFactory::__construct";i:99;s:47:"PHPStan\Analyser\NodeScopeResolver::__construct";i:100;s:60:"PHPStan\Analyser\ResultCache\ResultCacheManager::__construct";i:101;s:60:"PHPStan\Analyser\ResultCache\ResultCacheClearer::__construct";i:102;s:32:"PHPStan\Cache\Cache::__construct";i:103;s:47:"PHPStan\Command\AnalyseApplication::__construct";i:104;s:43:"PHPStan\Command\AnalyserRunner::__construct";i:105;s:45:"PHPStan\Command\FixerApplication::__construct";i:106;s:50:"PHPStan\Command\IgnoredRegexValidator::__construct";i:107;s:48:"PHPStan\Dependency\DependencyDumper::__construct";i:108;s:50:"PHPStan\Dependency\DependencyResolver::__construct";i:109;s:51:"PHPStan\Dependency\ExportedNodeFetcher::__construct";i:110;s:52:"PHPStan\Dependency\ExportedNodeResolver::__construct";i:111;s:51:"PHPStan\Dependency\ExportedNodeVisitor::__construct";i:112;s:59:"PHPStan\DependencyInjection\MemoizingContainer::__construct";i:113;s:61:"PHPStan\DependencyInjection\Nette\NetteContainer::__construct";i:114;s:67:"PHPStan\DependencyInjection\DerivativeContainerFactory::__construct";i:115;s:96:"PHPStan\DependencyInjection\Reflection\LazyClassReflectionExtensionRegistryProvider::__construct";i:116;s:92:"PHPStan\DependencyInjection\Type\LazyDynamicReturnTypeExtensionRegistryProvider::__construct";i:117;s:97:"PHPStan\DependencyInjection\Type\LazyOperatorTypeSpecifyingExtensionRegistryProvider::__construct";i:118;s:36:"PHPStan\File\FileHelper::__construct";i:119;s:38:"PHPStan\File\FileExcluder::__construct";i:120;s:36:"PHPStan\File\FileFinder::__construct";i:121;s:37:"PHPStan\File\FileMonitor::__construct";i:122;s:46:"PHPStan\Parallel\ParallelAnalyser::__construct";i:123;s:39:"PHPStan\Parallel\Scheduler::__construct";i:124;s:40:"PHPStan\Parser\CachedParser::__construct";i:125;s:57:"PHPStan\Reflection\Php\PhpFunctionReflection::__construct";i:126;s:79:"PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher::__construct";i:127;s:84:"PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator::__construct";i:128;s:109:"PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker::__construct";i:129;s:94:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocator::__construct";i:130;s:104:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository::__construct";i:131;s:92:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator::__construct";i:132;s:95:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator::__construct";i:133;s:105:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository::__construct";i:134;s:74:"PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension::__construct";i:135;s:77:"PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension::__construct";i:136;s:63:"PHPStan\Reflection\Php\PhpClassReflectionExtension::__construct";i:137;s:55:"PHPStan\Reflection\Php\PhpMethodReflection::__construct";i:138;s:81:"PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension::__construct";i:139;s:81:"PHPStan\Reflection\ReflectionProvider\LazyReflectionProviderProvider::__construct";i:140;s:77:"PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider::__construct";i:141;s:63:"PHPStan\Reflection\SignatureMap\SignatureMapParser::__construct";i:142;s:73:"PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider::__construct";i:143;s:69:"PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider::__construct";i:144;s:72:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory::__construct";i:145;s:67:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory::create";i:146;s:52:"PHPStan\Rules\ClassCaseSensitivityCheck::__construct";i:147;s:65:"PHPStan\Rules\Comparison\ConstantConditionRuleHelper::__construct";i:148;s:63:"PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper::__construct";i:149;s:54:"PHPStan\Rules\FunctionCallParametersCheck::__construct";i:150;s:50:"PHPStan\Rules\FunctionDefinitionCheck::__construct";i:151;s:50:"PHPStan\Rules\FunctionReturnTypeCheck::__construct";i:152;s:57:"PHPStan\Rules\Generics\GenericAncestorsCheck::__construct";i:153;s:53:"PHPStan\Rules\Generics\TemplateTypeCheck::__construct";i:154;s:37:"PHPStan\Rules\IssetCheck::__construct";i:155;s:54:"PHPStan\Rules\Methods\MethodSignatureRule::__construct";i:156;s:47:"PHPStan\Rules\MissingTypehintCheck::__construct";i:157;s:78:"PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider::__construct";i:158;s:42:"PHPStan\Rules\RegistryFactory::__construct";i:159;s:42:"PHPStan\Rules\RuleLevelHelper::__construct";i:160;s:40:"PHPStan\Type\FileTypeMapper::__construct";i:161;s:71:"PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension::__construct";i:162;s:65:"PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension::__construct";i:163;s:78:"PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension::__construct";i:164;s:67:"PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension::__construct";i:165;s:65:"PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension::__construct";i:166;s:60:"PHPStan\Type\Php\MbFunctionsReturnTypeExtension::__construct";i:167;s:71:"PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension::__construct";i:168;s:72:"PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension::__construct";i:169;s:79:"PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension::__construct";i:170;s:45:"PHPStan\Analyser\TypeSpecifierFactory::create";i:171;s:50:"PHPStan\Analyser\TypeSpecifierFactory::__construct";i:172;s:49:"PHPStan\File\FuzzyRelativePathHelper::__construct";i:173;s:50:"PHPStan\File\SimpleRelativePathHelper::__construct";i:174;s:59:"PHPStan\File\ParentDirectoryRelativePathHelper::__construct";i:175;s:36:"PHPStan\Broker\BrokerFactory::create";i:176;s:41:"PHPStan\Broker\BrokerFactory::__construct";i:177;s:43:"PHPStan\Cache\FileCacheStorage::__construct";i:178;s:38:"PHPStan\Parser\RichParser::__construct";i:179;s:40:"PHPStan\Parser\SimpleParser::__construct";i:180;s:46:"PHPStan\Parser\PhpParserDecorator::__construct";i:181;s:35:"PHPStan\Parser\LexerFactory::create";i:182;s:37:"PhpParser\ParserAbstract::__construct";i:183;s:37:"PHPStan\Rules\RegistryFactory::create";i:184;s:46:"PHPStan\PhpDoc\StubPhpDocProvider::__construct";i:185;s:76:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory::__construct";i:187;s:80:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory::create";i:188;s:83:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector::__construct";i:189;s:53:"_HumbugBox96739a27ace4\Nette\DI\Container::getService";i:190;s:86:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector::__construct";i:191;s:86:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector::__construct";i:192;s:73:"PHPStan\Reflection\BetterReflection\BetterReflectionProvider::__construct";i:193;s:26:"Hoa\Compiler\Llk\Llk::load";i:194;s:26:"Hoa\File\Read::__construct";i:195;s:83:"PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider::__construct";i:196;s:65:"PHPStan\Reflection\Runtime\RuntimeReflectionProvider::__construct";i:197;s:85:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory::__construct";i:199;s:113:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber::__construct";i:200;s:110:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber::__construct";i:201;s:38:"PhpParser\Lexer\Emulative::__construct";i:204;s:45:"PHPStan\Parser\PathRoutingParser::__construct";i:205;s:70:"PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter::__construct";i:206;s:63:"PHPStan\Command\ErrorFormatter\TableErrorFormatter::__construct";i:207;s:68:"PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter::__construct";i:208;s:62:"PHPStan\Command\ErrorFormatter\JsonErrorFormatter::__construct";i:209;s:63:"PHPStan\Command\ErrorFormatter\JunitErrorFormatter::__construct";i:211;s:64:"PHPStan\Command\ErrorFormatter\GitlabErrorFormatter::__construct";i:212;s:64:"PHPStan\Command\ErrorFormatter\GithubErrorFormatter::__construct";i:213;s:66:"PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter::__construct";i:214;s:64:"PHPStan\Rules\Classes\ExistingClassInInstanceOfRule::__construct";i:215;s:66:"PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule::__construct";i:216;s:66:"PHPStan\Rules\Functions\CallToNonExistentFunctionRule::__construct";i:217;s:50:"PHPStan\Rules\Methods\CallMethodsRule::__construct";i:218;s:56:"PHPStan\Rules\Methods\CallStaticMethodsRule::__construct";i:219;s:55:"PHPStan\Rules\Methods\OverridingMethodRule::__construct";i:220;s:73:"PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule::__construct";i:221;s:52:"PHPStan\Rules\Missing\MissingReturnRule::__construct";i:222;s:65:"PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule::__construct";i:223;s:60:"PHPStan\Rules\Namespaces\ExistingNamesInUseRule::__construct";i:224;s:63:"PHPStan\Rules\Operators\InvalidIncDecOperationRule::__construct";i:225;s:58:"PHPStan\Rules\Properties\AccessPropertiesRule::__construct";i:226;s:64:"PHPStan\Rules\Properties\AccessStaticPropertiesRule::__construct";i:227;s:69:"PHPStan\Rules\Properties\ExistingClassesInPropertiesRule::__construct";i:228;s:63:"PHPStan\Rules\Properties\UninitializedPropertyRule::__construct";i:229;s:69:"PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule::__construct";i:230;s:68:"PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule::__construct";i:231;s:57:"PHPStan\Rules\Variables\CompactVariablesRule::__construct";i:232;s:56:"PHPStan\Rules\Variables\DefinedVariableRule::__construct";i:233;s:44:"PHPStan\Rules\Classes\MixinRule::__construct";i:234;s:54:"PHPStan\Rules\Functions\CallCallablesRule::__construct";i:235;s:61:"PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule::__construct";i:236;s:58:"PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule::__construct";i:237;s:63:"PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule::__construct";i:238;s:59:"PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule::__construct";i:239;s:70:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule::__construct";i:240;s:51:"PHPStan\Rules\Functions\ReturnTypeRule::__construct";i:241;s:55:"PHPStan\Rules\Generators\YieldFromTypeRule::__construct";i:242;s:58:"PHPStan\Rules\Generators\YieldInGeneratorRule::__construct";i:243;s:59:"PHPStan\Rules\Classes\ImpossibleInstanceOfRule::__construct";i:244;s:69:"PHPStan\Rules\Comparison\BooleanAndConstantConditionRule::__construct";i:245;s:68:"PHPStan\Rules\Comparison\BooleanOrConstantConditionRule::__construct";i:246;s:69:"PHPStan\Rules\Comparison\BooleanNotConstantConditionRule::__construct";i:247;s:61:"PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule::__construct";i:248;s:65:"PHPStan\Rules\Comparison\ElseIfConstantConditionRule::__construct";i:249;s:61:"PHPStan\Rules\Comparison\IfConstantConditionRule::__construct";i:250;s:73:"PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule::__construct";i:251;s:71:"PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule::__construct";i:252;s:77:"PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule::__construct";i:253;s:74:"PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule::__construct";i:254;s:74:"PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule::__construct";i:255;s:63:"PHPStan\Rules\Comparison\UnreachableIfBranchesRule::__construct";i:256;s:70:"PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule::__construct";i:257;s:75:"PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule::__construct";i:258;s:46:"PHPStan\Rules\Variables\IssetRule::__construct";i:259;s:53:"PHPStan\Rules\Variables\NullCoalesceRule::__construct";i:260;s:60:"PHPStan\Rules\Functions\RandomIntParametersRule::__construct";i:261;s:61:"PHPStan\Rules\Deprecations\DeprecatedClassHelper::__construct";}i:5;s:32:"b6a7294aeaea30a2e99dbe9544241dff";} \ No newline at end of file diff --git a/data/cache/nette.configurator/Container_e563100465.php b/data/cache/nette.configurator/Container_e563100465.php deleted file mode 100644 index 481fe0e..0000000 --- a/data/cache/nette.configurator/Container_e563100465.php +++ /dev/null @@ -1,5736 +0,0 @@ - ['018' => true, '0240' => true], - 'phpstan.broker.methodsClassReflectionExtension' => ['069' => true], - 'phpstan.broker.propertiesClassReflectionExtension' => ['070' => true, '073' => true, '0137' => true], - 'phpstan.broker.dynamicFunctionReturnTypeExtension' => [ - '0101' => true, - '0102' => true, - '0103' => true, - '0104' => true, - '0105' => true, - '0107' => true, - '0108' => true, - '0109' => true, - '0110' => true, - '0111' => true, - '0112' => true, - '0113' => true, - '0114' => true, - '0115' => true, - '0116' => true, - '0117' => true, - '0118' => true, - '0119' => true, - '0123' => true, - '0125' => true, - '0126' => true, - '0128' => true, - '0129' => true, - '0130' => true, - '0131' => true, - '0132' => true, - '0133' => true, - '0134' => true, - '0135' => true, - '0136' => true, - '0138' => true, - '0141' => true, - '0142' => true, - '0143' => true, - '0144' => true, - '0145' => true, - '0146' => true, - '0147' => true, - '0148' => true, - '0149' => true, - '0150' => true, - '0151' => true, - '0152' => true, - '0153' => true, - '0154' => true, - '0155' => true, - '0156' => true, - '0177' => true, - '0178' => true, - '0180' => true, - '0181' => true, - '0182' => true, - ], - 'phpstan.typeSpecifier.functionTypeSpecifyingExtension' => [ - '0106' => true, - '0124' => true, - '0139' => true, - '0140' => true, - '0157' => true, - '0158' => true, - '0159' => true, - '0160' => true, - '0161' => true, - '0162' => true, - '0163' => true, - '0164' => true, - '0165' => true, - '0166' => true, - '0167' => true, - '0168' => true, - '0169' => true, - '0170' => true, - '0171' => true, - '0172' => true, - '0173' => true, - '0174' => true, - '0175' => true, - '0176' => true, - '0241' => true, - ], - 'phpstan.broker.dynamicStaticMethodReturnTypeExtension' => ['0120' => true, '0122' => true], - 'phpstan.broker.dynamicMethodReturnTypeExtension' => [ - '0121' => true, - '0127' => true, - '0138' => true, - '0179' => true, - '0244' => true, - '0245' => true, - '0246' => true, - ], - 'phpstan.rules.rule' => [ - '0187' => true, - '0188' => true, - '0189' => true, - '0191' => true, - '0192' => true, - '0193' => true, - '0195' => true, - '0196' => true, - '0197' => true, - '0198' => true, - '0199' => true, - '0200' => true, - '0201' => true, - '0203' => true, - '0204' => true, - '0205' => true, - '0206' => true, - '0207' => true, - '0210' => true, - '0211' => true, - '0212' => true, - '0213' => true, - '0214' => true, - '0215' => true, - '0216' => true, - '0217' => true, - '0218' => true, - '0219' => true, - '0220' => true, - '0221' => true, - '0222' => true, - '0223' => true, - '0227' => true, - '0228' => true, - '0229' => true, - '0230' => true, - '0231' => true, - '0232' => true, - '0233' => true, - '0234' => true, - '0235' => true, - '0236' => true, - 'rules.0' => true, - 'rules.1' => true, - 'rules.10' => true, - 'rules.11' => true, - 'rules.12' => true, - 'rules.13' => true, - 'rules.14' => true, - 'rules.15' => true, - 'rules.16' => true, - 'rules.17' => true, - 'rules.18' => true, - 'rules.19' => true, - 'rules.2' => true, - 'rules.20' => true, - 'rules.21' => true, - 'rules.22' => true, - 'rules.23' => true, - 'rules.24' => true, - 'rules.25' => true, - 'rules.26' => true, - 'rules.27' => true, - 'rules.28' => true, - 'rules.29' => true, - 'rules.3' => true, - 'rules.30' => true, - 'rules.31' => true, - 'rules.32' => true, - 'rules.33' => true, - 'rules.34' => true, - 'rules.35' => true, - 'rules.36' => true, - 'rules.37' => true, - 'rules.38' => true, - 'rules.39' => true, - 'rules.4' => true, - 'rules.40' => true, - 'rules.41' => true, - 'rules.42' => true, - 'rules.43' => true, - 'rules.44' => true, - 'rules.45' => true, - 'rules.46' => true, - 'rules.47' => true, - 'rules.48' => true, - 'rules.49' => true, - 'rules.5' => true, - 'rules.50' => true, - 'rules.51' => true, - 'rules.52' => true, - 'rules.53' => true, - 'rules.54' => true, - 'rules.55' => true, - 'rules.56' => true, - 'rules.57' => true, - 'rules.58' => true, - 'rules.59' => true, - 'rules.6' => true, - 'rules.60' => true, - 'rules.61' => true, - 'rules.62' => true, - 'rules.63' => true, - 'rules.64' => true, - 'rules.65' => true, - 'rules.66' => true, - 'rules.67' => true, - 'rules.68' => true, - 'rules.69' => true, - 'rules.7' => true, - 'rules.70' => true, - 'rules.71' => true, - 'rules.72' => true, - 'rules.73' => true, - 'rules.74' => true, - 'rules.75' => true, - 'rules.76' => true, - 'rules.77' => true, - 'rules.78' => true, - 'rules.79' => true, - 'rules.8' => true, - 'rules.80' => true, - 'rules.81' => true, - 'rules.82' => true, - 'rules.83' => true, - 'rules.84' => true, - 'rules.85' => true, - 'rules.86' => true, - 'rules.87' => true, - 'rules.88' => true, - 'rules.89' => true, - 'rules.9' => true, - 'rules.90' => true, - 'rules.91' => true, - 'rules.92' => true, - 'rules.93' => true, - 'rules.94' => true, - 'rules.95' => true, - 'rules.96' => true, - 'rules.97' => true, - ], - 'phpstan.typeSpecifier.methodTypeSpecifyingExtension' => ['0242' => true], - 'phpstan.typeSpecifier.staticMethodTypeSpecifyingExtension' => ['0243' => true], - ]; - - protected $types = ['container' => '_HumbugBox96739a27ace4\Nette\DI\Container']; - protected $aliases = []; - - protected $wiring = [ - '_HumbugBox96739a27ace4\Nette\DI\Container' => [['container']], - 'PHPStan\Rules\Rule' => [ - 0 => [ - '092', - '0187', - '0188', - '0189', - '0190', - '0191', - '0192', - '0193', - '0194', - '0195', - '0196', - '0197', - '0198', - '0199', - '0200', - '0201', - '0202', - '0203', - '0204', - '0205', - '0206', - '0207', - '0208', - '0209', - '0210', - '0211', - '0212', - '0213', - '0214', - '0215', - '0216', - '0217', - '0218', - '0219', - '0220', - '0221', - '0222', - '0223', - '0224', - '0225', - '0226', - '0227', - '0228', - '0229', - '0230', - '0231', - '0232', - '0233', - '0234', - '0235', - '0236', - '0237', - '0238', - '0239', - ], - 2 => [ - 'rules.0', - 'rules.1', - 'rules.2', - 'rules.3', - 'rules.4', - 'rules.5', - 'rules.6', - 'rules.7', - 'rules.8', - 'rules.9', - 'rules.10', - 'rules.11', - 'rules.12', - 'rules.13', - 'rules.14', - 'rules.15', - 'rules.16', - 'rules.17', - 'rules.18', - 'rules.19', - 'rules.20', - 'rules.21', - 'rules.22', - 'rules.23', - 'rules.24', - 'rules.25', - 'rules.26', - 'rules.27', - 'rules.28', - 'rules.29', - 'rules.30', - 'rules.31', - 'rules.32', - 'rules.33', - 'rules.34', - 'rules.35', - 'rules.36', - 'rules.37', - 'rules.38', - 'rules.39', - 'rules.40', - 'rules.41', - 'rules.42', - 'rules.43', - 'rules.44', - 'rules.45', - 'rules.46', - 'rules.47', - 'rules.48', - 'rules.49', - 'rules.50', - 'rules.51', - 'rules.52', - 'rules.53', - 'rules.54', - 'rules.55', - 'rules.56', - 'rules.57', - 'rules.58', - 'rules.59', - 'rules.60', - 'rules.61', - 'rules.62', - 'rules.63', - 'rules.64', - 'rules.65', - 'rules.66', - 'rules.67', - 'rules.68', - 'rules.69', - 'rules.70', - 'rules.71', - 'rules.72', - 'rules.73', - 'rules.74', - 'rules.75', - 'rules.76', - 'rules.77', - 'rules.78', - 'rules.79', - 'rules.80', - 'rules.81', - 'rules.82', - 'rules.83', - 'rules.84', - 'rules.85', - 'rules.86', - 'rules.87', - 'rules.88', - 'rules.89', - 'rules.90', - 'rules.91', - 'rules.92', - 'rules.93', - 'rules.94', - 'rules.95', - 'rules.96', - 'rules.97', - ], - ], - 'PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule' => [2 => ['rules.0']], - 'PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule' => [2 => ['rules.1']], - 'PHPStan\Rules\Classes\ClassConstantRule' => [2 => ['rules.2']], - 'PHPStan\Rules\Classes\DuplicateDeclarationRule' => [2 => ['rules.3']], - 'PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule' => [2 => ['rules.4']], - 'PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule' => [2 => ['rules.5']], - 'PHPStan\Rules\Classes\ExistingClassInClassExtendsRule' => [2 => ['rules.6']], - 'PHPStan\Rules\Classes\ExistingClassInTraitUseRule' => [2 => ['rules.7']], - 'PHPStan\Rules\Classes\InstantiationRule' => [2 => ['rules.8']], - 'PHPStan\Rules\Classes\NewStaticRule' => [2 => ['rules.9']], - 'PHPStan\Rules\Exceptions\ThrowExpressionRule' => [2 => ['rules.10']], - 'PHPStan\Rules\Functions\CallToFunctionParametersRule' => [2 => ['rules.11']], - 'PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule' => [2 => ['rules.12']], - 'PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule' => [2 => ['rules.13']], - 'PHPStan\Rules\Functions\ExistingClassesInTypehintsRule' => [2 => ['rules.14']], - 'PHPStan\Rules\Functions\InnerFunctionRule' => [2 => ['rules.15']], - 'PHPStan\Rules\Functions\PrintfParametersRule' => [2 => ['rules.16']], - 'PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule' => [2 => ['rules.17']], - 'PHPStan\Rules\Methods\ExistingClassesInTypehintsRule' => [2 => ['rules.18']], - 'PHPStan\Rules\Methods\MissingMethodImplementationRule' => [2 => ['rules.19']], - 'PHPStan\Rules\Properties\AccessPropertiesInAssignRule' => [2 => ['rules.20']], - 'PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule' => [2 => ['rules.21']], - 'PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule' => [2 => ['rules.22']], - 'PHPStan\Rules\Variables\UnsetRule' => [2 => ['rules.23']], - 'PHPStan\Rules\Classes\UnusedConstructorParametersRule' => [2 => ['rules.24']], - 'PHPStan\Rules\Constants\ConstantRule' => [2 => ['rules.25']], - 'PHPStan\Rules\Functions\UnusedClosureUsesRule' => [2 => ['rules.26']], - 'PHPStan\Rules\Variables\VariableCertaintyInIssetRule' => [2 => ['rules.27']], - 'PHPStan\Rules\Cast\EchoRule' => [2 => ['rules.28']], - 'PHPStan\Rules\Cast\InvalidCastRule' => [2 => ['rules.29']], - 'PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule' => [2 => ['rules.30']], - 'PHPStan\Rules\Cast\PrintRule' => [2 => ['rules.31']], - 'PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule' => [2 => ['rules.32']], - 'PHPStan\Rules\Generics\ClassAncestorsRule' => [2 => ['rules.33']], - 'PHPStan\Rules\Generics\ClassTemplateTypeRule' => [2 => ['rules.34']], - 'PHPStan\Rules\Generics\FunctionTemplateTypeRule' => [2 => ['rules.35']], - 'PHPStan\Rules\Generics\FunctionSignatureVarianceRule' => [2 => ['rules.36']], - 'PHPStan\Rules\Generics\InterfaceAncestorsRule' => [2 => ['rules.37']], - 'PHPStan\Rules\Generics\InterfaceTemplateTypeRule' => [2 => ['rules.38']], - 'PHPStan\Rules\Generics\MethodTemplateTypeRule' => [2 => ['rules.39']], - 'PHPStan\Rules\Generics\MethodSignatureVarianceRule' => [2 => ['rules.40']], - 'PHPStan\Rules\Generics\TraitTemplateTypeRule' => [2 => ['rules.41']], - 'PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule' => [2 => ['rules.42']], - 'PHPStan\Rules\Operators\InvalidBinaryOperationRule' => [2 => ['rules.43']], - 'PHPStan\Rules\Operators\InvalidUnaryOperationRule' => [2 => ['rules.44']], - 'PHPStan\Rules\Operators\InvalidComparisonOperationRule' => [2 => ['rules.45']], - 'PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule' => [2 => ['rules.46']], - 'PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule' => [2 => ['rules.47']], - 'PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule' => [2 => ['rules.48']], - 'PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule' => [2 => ['rules.49']], - 'PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule' => [2 => ['rules.50']], - 'PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule' => [2 => ['rules.51']], - 'PHPStan\Rules\Arrays\AppendedArrayItemTypeRule' => [2 => ['rules.52']], - 'PHPStan\Rules\Arrays\IterableInForeachRule' => [2 => ['rules.53']], - 'PHPStan\Rules\Arrays\OffsetAccessAssignmentRule' => [2 => ['rules.54']], - 'PHPStan\Rules\Arrays\OffsetAccessAssignOpRule' => [2 => ['rules.55']], - 'PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule' => [2 => ['rules.56']], - 'PHPStan\Rules\Arrays\UnpackIterableInArrayRule' => [2 => ['rules.57']], - 'PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule' => [2 => ['rules.58']], - 'PHPStan\Rules\Functions\ClosureReturnTypeRule' => [2 => ['rules.59']], - 'PHPStan\Rules\Generators\YieldTypeRule' => [2 => ['rules.60']], - 'PHPStan\Rules\Methods\ReturnTypeRule' => [2 => ['rules.61']], - 'PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule' => [2 => ['rules.62']], - 'PHPStan\Rules\Properties\TypesAssignedToPropertiesRule' => [2 => ['rules.63']], - 'PHPStan\Rules\Variables\ThrowTypeRule' => [2 => ['rules.64']], - 'PHPStan\Rules\Variables\VariableCloningRule' => [2 => ['rules.65']], - 'PHPStan\Rules\Arrays\DeadForeachRule' => [2 => ['rules.66']], - 'PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule' => [2 => ['rules.67']], - 'PHPStan\Rules\DeadCode\NoopRule' => [2 => ['rules.68']], - 'PHPStan\Rules\DeadCode\UnreachableStatementRule' => [2 => ['rules.69']], - 'PHPStan\Rules\Exceptions\DeadCatchRule' => [2 => ['rules.70']], - 'PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule' => [2 => ['rules.71']], - 'PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule' => [2 => ['rules.72']], - 'PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule' => [2 => ['rules.73']], - 'PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule' => [2 => ['rules.74']], - 'PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule' => [2 => ['rules.75']], - 'PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule' => [2 => ['rules.76']], - 'PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule' => [2 => ['rules.77']], - 'PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule' => [2 => ['rules.78']], - 'PHPStan\Rules\Methods\MissingMethodParameterTypehintRule' => [2 => ['rules.79']], - 'PHPStan\Rules\Methods\MissingMethodReturnTypehintRule' => [2 => ['rules.80']], - 'PHPStan\Rules\Properties\MissingPropertyTypehintRule' => [2 => ['rules.81']], - 'PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule' => [2 => ['rules.82']], - 'PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule' => [2 => ['rules.83']], - 'PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule' => [2 => ['rules.84']], - 'PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule' => [2 => ['rules.85']], - 'PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule' => [2 => ['rules.86']], - 'PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule' => [2 => ['rules.87']], - 'PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule' => [2 => ['rules.88']], - 'PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule' => [2 => ['rules.89']], - 'PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule' => [2 => ['rules.90']], - 'PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule' => [2 => ['rules.91']], - 'PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule' => [2 => ['rules.92']], - 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule' => [2 => ['rules.93']], - 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule' => [2 => ['rules.94']], - 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule' => [2 => ['rules.95']], - 'PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule' => [2 => ['rules.96']], - 'PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule' => [2 => ['rules.97']], - 'PhpParser\BuilderFactory' => [['01']], - 'PHPStan\Parser\LexerFactory' => [['02']], - 'PhpParser\NodeVisitorAbstract' => [['03', '04', '039', '050', '055', '060']], - 'PhpParser\NodeVisitor' => [['03', '04', '039', '050', '055', '060']], - 'PhpParser\NodeVisitor\NameResolver' => [['03']], - 'PhpParser\NodeVisitor\NodeConnectingVisitor' => [['04']], - 'PhpParser\PrettyPrinterAbstract' => [['05']], - 'PhpParser\PrettyPrinter\Standard' => [['05']], - 'PHPStan\Broker\AnonymousClassNameHelper' => [['06']], - 'PHPStan\Php\PhpVersion' => [['07']], - 'PHPStan\Php\PhpVersionFactory' => [['08']], - 'PHPStan\Php\PhpVersionFactoryFactory' => [['09']], - 'PHPStan\PhpDocParser\Lexer\Lexer' => [['010']], - 'PHPStan\PhpDocParser\Parser\TypeParser' => [['011']], - 'PHPStan\PhpDocParser\Parser\ConstExprParser' => [['012']], - 'PHPStan\PhpDocParser\Parser\PhpDocParser' => [['013']], - 'PHPStan\PhpDoc\PhpDocInheritanceResolver' => [['014']], - 'PHPStan\PhpDoc\PhpDocNodeResolver' => [['015']], - 'PHPStan\PhpDoc\PhpDocStringResolver' => [['016']], - 'PHPStan\PhpDoc\ConstExprNodeResolver' => [['017']], - 'PHPStan\PhpDoc\TypeNodeResolverExtension' => [['018', '0240']], - 'PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension' => [['018']], - 'PHPStan\PhpDoc\TypeNodeResolver' => [['019']], - 'PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider' => [['020']], - 'PHPStan\PhpDoc\TypeStringResolver' => [['021']], - 'PHPStan\PhpDoc\StubValidator' => [['022']], - 'PHPStan\Analyser\Analyser' => [['023']], - 'PHPStan\Analyser\FileAnalyser' => [['024']], - 'PHPStan\Analyser\IgnoredErrorHelper' => [['025']], - 'PHPStan\Analyser\ScopeFactory' => [['026']], - 'PHPStan\Analyser\LazyScopeFactory' => [['026']], - 'PHPStan\Analyser\NodeScopeResolver' => [['027']], - 'PHPStan\Analyser\ResultCache\ResultCacheManagerFactory' => [['028']], - 'PHPStan\Analyser\ResultCache\ResultCacheClearer' => [['029']], - 'PHPStan\Cache\Cache' => [['030']], - 'PHPStan\Command\AnalyseApplication' => [['031']], - 'PHPStan\Command\AnalyserRunner' => [['032']], - 'PHPStan\Command\FixerApplication' => [['033']], - 'PHPStan\Command\IgnoredRegexValidator' => [['034']], - 'PHPStan\Dependency\DependencyDumper' => [['035']], - 'PHPStan\Dependency\DependencyResolver' => [['036']], - 'PHPStan\Dependency\ExportedNodeFetcher' => [['037']], - 'PHPStan\Dependency\ExportedNodeResolver' => [['038']], - 'PHPStan\Dependency\ExportedNodeVisitor' => [['039']], - 'PHPStan\DependencyInjection\Container' => [['040'], ['041']], - 'PHPStan\DependencyInjection\Nette\NetteContainer' => [['041']], - 'PHPStan\DependencyInjection\DerivativeContainerFactory' => [['042']], - 'PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider' => [['043']], - 'PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider' => [['044']], - 'PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider' => [['045']], - 'PHPStan\File\FileHelper' => [['046']], - 'PHPStan\File\FileExcluder' => [['047']], - 'PHPStan\File\FileFinder' => [['048']], - 'PHPStan\File\FileMonitor' => [['049']], - 'PHPStan\NodeVisitor\StatementOrderVisitor' => [['050']], - 'PHPStan\Parallel\ParallelAnalyser' => [['051']], - 'PHPStan\Parallel\Scheduler' => [['052']], - 'PHPStan\Parser\Parser' => [ - 0 => ['053'], - 2 => [1 => 'currentPhpVersionRichParser', 'currentPhpVersionSimpleParser', 'php8Parser', 'pathRoutingParser'], - ], - 'PHPStan\Parser\CachedParser' => [['053']], - 'PHPStan\Parser\FunctionCallStatementFinder' => [['054']], - 'PHPStan\Parser\NodeChildrenVisitor' => [['055']], - 'PHPStan\Process\CpuCoreCounter' => [['056']], - 'PHPStan\Reflection\FunctionReflectionFactory' => [['057']], - 'PHPStan\Reflection\MethodsClassReflectionExtension' => [['058', '069', '071']], - 'PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension' => [['058']], - 'PHPStan\Reflection\PropertiesClassReflectionExtension' => [['059', '070', '071', '073', '0137']], - 'PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension' => [['059']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor' => [['060']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher' => [['061']], - '_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\SourceLocator' => [ - 0 => ['062'], - 2 => [1 => 'betterReflectionSourceLocator', 'stubSourceLocator'], - ], - 'PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator' => [['062']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker' => [['063']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory' => [['064']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository' => [['065']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory' => [['066']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory' => [['067']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository' => [['068']], - 'PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension' => [['069']], - 'PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension' => [['070']], - 'PHPStan\Reflection\Php\PhpClassReflectionExtension' => [['071']], - 'PHPStan\Reflection\Php\PhpMethodReflectionFactory' => [['072']], - 'PHPStan\Reflection\BrokerAwareExtension' => [['073', '0178']], - 'PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension' => [['073']], - 'PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider' => [['074']], - 'PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider' => [['075']], - 'PHPStan\Reflection\SignatureMap\SignatureMapParser' => [['076']], - 'PHPStan\Reflection\SignatureMap\SignatureMapProvider' => [['080'], ['077', '078']], - 'PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider' => [['077']], - 'PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider' => [['078']], - 'PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory' => [['079']], - 'PHPStan\Rules\ClassCaseSensitivityCheck' => [['081']], - 'PHPStan\Rules\Comparison\ConstantConditionRuleHelper' => [['082']], - 'PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper' => [['083']], - 'PHPStan\Rules\FunctionCallParametersCheck' => [['084']], - 'PHPStan\Rules\FunctionDefinitionCheck' => [['085']], - 'PHPStan\Rules\FunctionReturnTypeCheck' => [['086']], - 'PHPStan\Rules\Generics\GenericAncestorsCheck' => [['087']], - 'PHPStan\Rules\Generics\GenericObjectTypeCheck' => [['088']], - 'PHPStan\Rules\Generics\TemplateTypeCheck' => [['089']], - 'PHPStan\Rules\Generics\VarianceCheck' => [['090']], - 'PHPStan\Rules\IssetCheck' => [['091']], - 'PHPStan\Rules\Methods\MethodSignatureRule' => [['092']], - 'PHPStan\Rules\MissingTypehintCheck' => [['093']], - 'PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider' => [['094']], - 'PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider' => [['094']], - 'PHPStan\Rules\Properties\PropertyDescriptor' => [['095']], - 'PHPStan\Rules\Properties\PropertyReflectionFinder' => [['096']], - 'PHPStan\Rules\RegistryFactory' => [['097']], - 'PHPStan\Rules\RuleLevelHelper' => [['098']], - 'PHPStan\Rules\UnusedFunctionParametersCheck' => [['099']], - 'PHPStan\Type\FileTypeMapper' => [['0100']], - 'PHPStan\Type\DynamicFunctionReturnTypeExtension' => [ - [ - '0101', - '0102', - '0103', - '0104', - '0105', - '0107', - '0108', - '0109', - '0110', - '0111', - '0112', - '0113', - '0114', - '0115', - '0116', - '0117', - '0118', - '0119', - '0123', - '0125', - '0126', - '0128', - '0129', - '0130', - '0131', - '0132', - '0133', - '0134', - '0135', - '0136', - '0138', - '0141', - '0142', - '0143', - '0144', - '0145', - '0146', - '0147', - '0148', - '0149', - '0150', - '0151', - '0152', - '0153', - '0154', - '0155', - '0156', - '0177', - '0178', - '0180', - '0181', - '0182', - ], - ], - 'PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension' => [['0101']], - 'PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension' => [['0102']], - 'PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension' => [['0103']], - 'PHPStan\Type\Php\ArrayFilterFunctionReturnTypeReturnTypeExtension' => [['0104']], - 'PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension' => [['0105']], - 'PHPStan\Type\FunctionTypeSpecifyingExtension' => [ - [ - '0106', - '0124', - '0139', - '0140', - '0157', - '0158', - '0159', - '0160', - '0161', - '0162', - '0163', - '0164', - '0165', - '0166', - '0167', - '0168', - '0169', - '0170', - '0171', - '0172', - '0173', - '0174', - '0175', - '0176', - '0241', - ], - ], - 'PHPStan\Analyser\TypeSpecifierAwareExtension' => [ - [ - '0106', - '0124', - '0139', - '0140', - '0157', - '0158', - '0159', - '0160', - '0161', - '0162', - '0163', - '0164', - '0165', - '0166', - '0167', - '0168', - '0169', - '0170', - '0171', - '0172', - '0173', - '0174', - '0175', - '0176', - '0178', - '0241', - '0242', - '0243', - ], - ], - 'PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension' => [['0106']], - 'PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension' => [['0107']], - 'PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension' => [['0108']], - 'PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension' => [['0109']], - 'PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension' => [['0110']], - 'PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension' => [['0111']], - 'PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension' => [['0112']], - 'PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension' => [['0113']], - 'PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension' => [['0114']], - 'PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension' => [['0115']], - 'PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension' => [['0116']], - 'PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension' => [['0117']], - 'PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension' => [['0118']], - 'PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension' => [['0119']], - 'PHPStan\Type\DynamicStaticMethodReturnTypeExtension' => [['0120', '0122']], - 'PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension' => [['0120']], - 'PHPStan\Type\DynamicMethodReturnTypeExtension' => [['0121', '0127', '0138', '0179', '0244', '0245', '0246']], - 'PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension' => [['0121']], - 'PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension' => [['0122']], - 'PHPStan\Type\Php\CountFunctionReturnTypeExtension' => [['0123']], - 'PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension' => [['0124']], - 'PHPStan\Type\Php\CurlInitReturnTypeExtension' => [['0125']], - 'PHPStan\Type\Php\DateFunctionReturnTypeExtension' => [['0126']], - 'PHPStan\Type\Php\DsMapDynamicReturnTypeExtension' => [['0127']], - 'PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension' => [['0128']], - 'PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension' => [['0129']], - 'PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension' => [['0130']], - 'PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension' => [['0131']], - 'PHPStan\Type\Php\GetClassDynamicReturnTypeExtension' => [['0132']], - 'PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension' => [['0133']], - 'PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension' => [['0134']], - 'PHPStan\Type\Php\HashHmacFunctionsReturnTypeExtension' => [['0135']], - 'PHPStan\Type\Php\HashFunctionsReturnTypeExtension' => [['0136']], - 'PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension' => [['0137']], - 'PHPStan\Type\Php\StatDynamicReturnTypeExtension' => [['0138']], - 'PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension' => [['0139']], - 'PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension' => [['0140']], - 'PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension' => [['0141']], - 'PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension' => [['0142']], - 'PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension' => [['0143']], - 'PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension' => [['0144']], - 'PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension' => [['0145']], - 'PHPStan\Type\Php\VarExportFunctionDynamicReturnTypeExtension' => [['0146']], - 'PHPStan\Type\Php\MbFunctionsReturnTypeExtension' => [['0147']], - 'PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension' => [['0148']], - 'PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension' => [['0149']], - 'PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension' => [['0150']], - 'PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension' => [['0151']], - 'PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension' => [['0152']], - 'PHPStan\Type\Php\PowFunctionReturnTypeExtension' => [['0153']], - 'PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension' => [['0154']], - 'PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension' => [['0155']], - 'PHPStan\Type\Php\RangeFunctionReturnTypeExtension' => [['0156']], - 'PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension' => [['0157']], - 'PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension' => [['0158']], - 'PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension' => [['0159']], - 'PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension' => [['0160']], - 'PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension' => [['0161']], - 'PHPStan\Type\Php\IsIntFunctionTypeSpecifyingExtension' => [['0162']], - 'PHPStan\Type\Php\IsFloatFunctionTypeSpecifyingExtension' => [['0163']], - 'PHPStan\Type\Php\IsNullFunctionTypeSpecifyingExtension' => [['0164']], - 'PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension' => [['0165']], - 'PHPStan\Type\Php\IsBoolFunctionTypeSpecifyingExtension' => [['0166']], - 'PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension' => [['0167']], - 'PHPStan\Type\Php\IsCountableFunctionTypeSpecifyingExtension' => [['0168']], - 'PHPStan\Type\Php\IsResourceFunctionTypeSpecifyingExtension' => [['0169']], - 'PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension' => [['0170']], - 'PHPStan\Type\Php\IsStringFunctionTypeSpecifyingExtension' => [['0171']], - 'PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension' => [['0172']], - 'PHPStan\Type\Php\IsObjectFunctionTypeSpecifyingExtension' => [['0173']], - 'PHPStan\Type\Php\IsNumericFunctionTypeSpecifyingExtension' => [['0174']], - 'PHPStan\Type\Php\IsScalarFunctionTypeSpecifyingExtension' => [['0175']], - 'PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension' => [['0176']], - 'PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension' => [['0177']], - 'PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension' => [['0178']], - 'PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension' => [['0179']], - 'PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension' => [['0180']], - 'PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension' => [['0181']], - 'PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension' => [['0182']], - 'PHPStan\Analyser\TypeSpecifier' => [['typeSpecifier']], - 'PHPStan\Analyser\TypeSpecifierFactory' => [['typeSpecifierFactory']], - 'PHPStan\File\RelativePathHelper' => [ - 0 => ['relativePathHelper'], - 2 => [1 => 'simpleRelativePathHelper', 'parentDirectoryRelativePathHelper'], - ], - 'PHPStan\File\ParentDirectoryRelativePathHelper' => [2 => ['parentDirectoryRelativePathHelper']], - 'PHPStan\Reflection\ReflectionProvider' => [ - ['reflectionProvider'], - ['broker', 'innerRuntimeReflectionProvider'], - [2 => 'betterReflectionProvider', 3 => 'runtimeReflectionProvider', 5 => 'stubBetterReflectionProvider'], - ], - 'PHPStan\Broker\Broker' => [['broker']], - 'PHPStan\Broker\BrokerFactory' => [['brokerFactory']], - 'PHPStan\Cache\CacheStorage' => [2 => ['cacheStorage']], - 'PHPStan\Cache\FileCacheStorage' => [2 => ['cacheStorage']], - 'PHPStan\Parser\RichParser' => [2 => ['currentPhpVersionRichParser']], - 'PHPStan\Parser\SimpleParser' => [2 => ['currentPhpVersionSimpleParser', 'php8Parser']], - 'PhpParser\Parser' => [0 => ['phpParserDecorator'], 2 => [1 => 'currentPhpVersionPhpParser', 'php8PhpParser']], - 'PHPStan\Parser\PhpParserDecorator' => [['phpParserDecorator']], - 'PhpParser\Lexer' => [2 => ['currentPhpVersionLexer', 'php8Lexer']], - 'PhpParser\ParserAbstract' => [2 => ['currentPhpVersionPhpParser', 'php8PhpParser']], - 'PhpParser\Parser\Php7' => [2 => ['currentPhpVersionPhpParser', 'php8PhpParser']], - 'PHPStan\Rules\Registry' => [['registry']], - 'PHPStan\PhpDoc\StubPhpDocProvider' => [['stubPhpDocProvider']], - 'PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory' => [['reflectionProviderFactory']], - 'PHPStan\Reflection\BetterReflection\BetterReflectionProvider' => [ - 0 => ['reflectionProvider'], - 2 => [1 => 'betterReflectionProvider', 'stubBetterReflectionProvider'], - ], - '_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector' => [ - 2 => ['betterReflectionClassReflector', 'nodeScopeResolverClassReflector', 'stubClassReflector'], - ], - '_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\Reflector' => [ - 2 => [ - 'betterReflectionClassReflector', - 'nodeScopeResolverClassReflector', - 'betterReflectionFunctionReflector', - 'betterReflectionConstantReflector', - 'stubClassReflector', - 'stubFunctionReflector', - 'stubConstantReflector', - ], - ], - 'PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector' => [ - 2 => ['betterReflectionClassReflector'], - ], - '_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector' => [ - 2 => ['betterReflectionFunctionReflector', 'stubFunctionReflector'], - ], - 'PHPStan\Reflection\BetterReflection\Reflector\MemoizingFunctionReflector' => [ - 2 => ['betterReflectionFunctionReflector'], - ], - '_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector' => [ - 2 => ['betterReflectionConstantReflector', 'stubConstantReflector'], - ], - 'PHPStan\Reflection\BetterReflection\Reflector\MemoizingConstantReflector' => [ - 2 => ['betterReflectionConstantReflector'], - ], - 'Hoa\Compiler\Llk\Parser' => [['regexParser']], - 'Hoa\File\File' => [['regexGrammarStream']], - 'Hoa\File\Generic' => [['regexGrammarStream']], - 'Hoa\Stream\Stream' => [['regexGrammarStream']], - 'Hoa\Stream\IStream\Stream' => [['regexGrammarStream']], - 'Hoa\Event\Listenable' => [['regexGrammarStream']], - 'Hoa\Event\Source' => [['regexGrammarStream']], - 'Hoa\Stream\IStream\Pathable' => [['regexGrammarStream']], - 'Hoa\Stream\IStream\Statable' => [['regexGrammarStream']], - 'Hoa\Stream\IStream\Touchable' => [['regexGrammarStream']], - 'Hoa\Stream\IStream\Bufferable' => [['regexGrammarStream']], - 'Hoa\Stream\IStream\Lockable' => [['regexGrammarStream']], - 'Hoa\Stream\IStream\Pointable' => [['regexGrammarStream']], - 'Hoa\Stream\IStream\In' => [['regexGrammarStream']], - 'Hoa\File\Read' => [['regexGrammarStream']], - 'PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider' => [2 => ['runtimeReflectionProvider']], - 'PHPStan\Reflection\Runtime\RuntimeReflectionProvider' => [['innerRuntimeReflectionProvider']], - 'PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory' => [['0183']], - 'PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory' => [['0184']], - '_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\SourceStubber' => [ - 1 => ['0185', '0186'], - ], - '_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber' => [ - ['0185'], - ], - '_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber' => [['0186']], - 'PhpParser\Lexer\Emulative' => [2 => ['php8Lexer']], - 'PHPStan\Parser\PathRoutingParser' => [2 => ['pathRoutingParser']], - 'PHPStan\Command\ErrorFormatter\ErrorFormatter' => [ - [ - 'errorFormatter.raw', - 'errorFormatter.baselineNeon', - 'errorFormatter.table', - 'errorFormatter.checkstyle', - 'errorFormatter.json', - 'errorFormatter.junit', - 'errorFormatter.prettyJson', - 'errorFormatter.gitlab', - 'errorFormatter.github', - 'errorFormatter.teamcity', - ], - ], - 'PHPStan\Command\ErrorFormatter\RawErrorFormatter' => [['errorFormatter.raw']], - 'PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter' => [['errorFormatter.baselineNeon']], - 'PHPStan\Command\ErrorFormatter\TableErrorFormatter' => [['errorFormatter.table']], - 'PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter' => [['errorFormatter.checkstyle']], - 'PHPStan\Command\ErrorFormatter\JsonErrorFormatter' => [['errorFormatter.json', 'errorFormatter.prettyJson']], - 'PHPStan\Command\ErrorFormatter\JunitErrorFormatter' => [['errorFormatter.junit']], - 'PHPStan\Command\ErrorFormatter\GitlabErrorFormatter' => [['errorFormatter.gitlab']], - 'PHPStan\Command\ErrorFormatter\GithubErrorFormatter' => [['errorFormatter.github']], - 'PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter' => [['errorFormatter.teamcity']], - 'PHPStan\Rules\Classes\ExistingClassInInstanceOfRule' => [['0187']], - 'PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule' => [['0188']], - 'PHPStan\Rules\Functions\CallToNonExistentFunctionRule' => [['0189']], - 'PHPStan\Rules\Functions\ClosureUsesThisRule' => [['0190']], - 'PHPStan\Rules\Methods\CallMethodsRule' => [['0191']], - 'PHPStan\Rules\Methods\CallStaticMethodsRule' => [['0192']], - 'PHPStan\Rules\Methods\OverridingMethodRule' => [['0193']], - 'PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule' => [['0194']], - 'PHPStan\Rules\Missing\MissingReturnRule' => [['0195']], - 'PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule' => [['0196']], - 'PHPStan\Rules\Namespaces\ExistingNamesInUseRule' => [['0197']], - 'PHPStan\Rules\Operators\InvalidIncDecOperationRule' => [['0198']], - 'PHPStan\Rules\Properties\AccessPropertiesRule' => [['0199']], - 'PHPStan\Rules\Properties\AccessStaticPropertiesRule' => [['0200']], - 'PHPStan\Rules\Properties\ExistingClassesInPropertiesRule' => [['0201']], - 'PHPStan\Rules\Properties\UninitializedPropertyRule' => [['0202']], - 'PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule' => [['0203']], - 'PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule' => [['0204']], - 'PHPStan\Rules\Variables\CompactVariablesRule' => [['0205']], - 'PHPStan\Rules\Variables\DefinedVariableRule' => [['0206']], - 'PHPStan\Rules\Regexp\RegularExpressionPatternRule' => [['0207']], - 'PHPStan\Rules\Whitespace\FileWhitespaceRule' => [['0208']], - 'PHPStan\Rules\Variables\VariableCertaintyNullCoalesceRule' => [['0209']], - 'PHPStan\Rules\Classes\MixinRule' => [['0210']], - 'PHPStan\Rules\Functions\CallCallablesRule' => [['0211']], - 'PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule' => [['0212']], - 'PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule' => [['0213']], - 'PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule' => [['0214']], - 'PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule' => [['0215']], - 'PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule' => [['0216']], - 'PHPStan\Rules\Functions\ReturnTypeRule' => [['0217']], - 'PHPStan\Rules\Generators\YieldFromTypeRule' => [['0218']], - 'PHPStan\Rules\Generators\YieldInGeneratorRule' => [['0219']], - 'PHPStan\Rules\Classes\ImpossibleInstanceOfRule' => [['0220']], - 'PHPStan\Rules\Comparison\BooleanAndConstantConditionRule' => [['0221']], - 'PHPStan\Rules\Comparison\BooleanOrConstantConditionRule' => [['0222']], - 'PHPStan\Rules\Comparison\BooleanNotConstantConditionRule' => [['0223']], - 'PHPStan\Rules\DeadCode\UnusedPrivateConstantRule' => [['0224']], - 'PHPStan\Rules\DeadCode\UnusedPrivateMethodRule' => [['0225']], - 'PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule' => [['0226']], - 'PHPStan\Rules\Comparison\ElseIfConstantConditionRule' => [['0227']], - 'PHPStan\Rules\Comparison\IfConstantConditionRule' => [['0228']], - 'PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule' => [['0229']], - 'PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule' => [['0230']], - 'PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule' => [['0231']], - 'PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule' => [['0232']], - 'PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule' => [['0233']], - 'PHPStan\Rules\Comparison\UnreachableIfBranchesRule' => [['0234']], - 'PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule' => [['0235']], - 'PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule' => [['0236']], - 'PHPStan\Rules\Variables\IssetRule' => [['0237']], - 'PHPStan\Rules\Variables\NullCoalesceRule' => [['0238']], - 'PHPStan\Rules\Functions\RandomIntParametersRule' => [['0239']], - 'PHPStan\PhpDoc\TypeNodeResolverAwareExtension' => [['0240']], - 'PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension' => [['0240']], - 'PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension' => [['0241']], - 'PHPStan\Type\MethodTypeSpecifyingExtension' => [['0242']], - 'PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension' => [['0242']], - 'PHPStan\Type\StaticMethodTypeSpecifyingExtension' => [['0243']], - 'PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension' => [['0243']], - 'PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension' => [['0244']], - 'PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension' => [['0245']], - 'PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension' => [['0246']], - 'PHPStan\Rules\Deprecations\DeprecatedClassHelper' => [['0247']], - 'PHPStan\PhpDoc\StubSourceLocatorFactory' => [['0248']], - ]; - - - public function __construct(array $params = []) - { - parent::__construct($params); - $this->parameters += [ - 'bootstrap' => null, - 'bootstrapFiles' => [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/runtime/ReflectionUnionType.php', - ], - 'excludes_analyse' => [], - 'autoload_directories' => [], - 'autoload_files' => [], - 'level' => 'max', - 'paths' => ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], - 'featureToggles' => [ - 'bleedingEdge' => false, - 'disableRuntimeReflectionProvider' => false, - 'closureUsesThis' => false, - 'randomIntParameters' => false, - 'nullCoalesce' => false, - 'fileWhitespace' => false, - 'unusedClassElements' => false, - 'readComposerPhpVersion' => false, - ], - 'fileExtensions' => ['php'], - 'checkAlwaysTrueCheckTypeFunctionCall' => false, - 'checkAlwaysTrueInstanceof' => false, - 'checkAlwaysTrueStrictComparison' => false, - 'checkClassCaseSensitivity' => true, - 'checkExplicitMixed' => false, - 'checkFunctionArgumentTypes' => true, - 'checkFunctionNameCase' => false, - 'checkGenericClassInNonGenericObjectType' => true, - 'checkInternalClassCaseSensitivity' => false, - 'checkMissingIterableValueType' => true, - 'checkMissingVarTagTypehint' => true, - 'checkArgumentsPassedByReference' => true, - 'checkMaybeUndefinedVariables' => true, - 'checkNullables' => true, - 'checkThisOnly' => false, - 'checkUnionTypes' => true, - 'checkExplicitMixedMissingReturn' => false, - 'checkPhpDocMissingReturn' => true, - 'checkPhpDocMethodSignatures' => true, - 'checkExtraArguments' => true, - 'checkMissingClosureNativeReturnTypehintRule' => false, - 'checkMissingTypehints' => true, - 'checkTooWideReturnTypesInProtectedAndPublicMethods' => false, - 'checkUninitializedProperties' => false, - 'inferPrivatePropertyTypeFromConstructor' => false, - 'reportMaybes' => true, - 'reportMaybesInMethodSignatures' => false, - 'reportStaticMethodSignatures' => false, - 'mixinExcludeClasses' => [], - 'scanFiles' => [], - 'scanDirectories' => [], - 'parallel' => [ - 'jobSize' => 20, - 'processTimeout' => 60.0, - 'maximumNumberOfProcesses' => 32, - 'minimumNumberOfJobsPerProcess' => 2, - 'buffer' => 134217728, - ], - 'phpVersion' => null, - 'polluteScopeWithLoopInitialAssignments' => true, - 'polluteScopeWithAlwaysIterableForeach' => true, - 'polluteCatchScopeWithTryAssignments' => false, - 'propertyAlwaysWrittenTags' => [], - 'propertyAlwaysReadTags' => [], - 'additionalConstructors' => ['PHPUnit\Framework\TestCase::setUp'], - 'treatPhpDocTypesAsCertain' => true, - 'tipsOfTheDay' => true, - 'reportMagicMethods' => true, - 'reportMagicProperties' => true, - 'ignoreErrors' => [], - 'internalErrorsCountLimit' => 50, - 'cache' => ['nodesByFileCountMax' => 1024, 'nodesByStringCountMax' => 1024], - 'reportUnmatchedIgnoredErrors' => true, - 'scopeClass' => 'PHPStan\Analyser\MutatingScope', - 'typeAliases' => [], - 'universalObjectCratesClasses' => ['stdClass'], - 'stubFiles' => [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', - ], - 'earlyTerminatingMethodCalls' => ['PHPUnit\Framework\Assert' => ['fail', 'markTestIncomplete', 'markTestSkipped']], - 'earlyTerminatingFunctionCalls' => [], - 'memoryLimitFile' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/.memory_limit', - 'tempResultCachePath' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCaches', - 'staticReflectionClassNamePatterns' => ['#^PhpParser\\\#', '#^PHPStan\\\#', '#^Hoa\\\#'], - 'dynamicConstantNames' => [ - 'ICONV_IMPL', - 'LIBXML_VERSION', - 'LIBXML_DOTTED_VERSION', - 'PHP_VERSION', - 'PHP_MAJOR_VERSION', - 'PHP_MINOR_VERSION', - 'PHP_RELEASE_VERSION', - 'PHP_VERSION_ID', - 'PHP_EXTRA_VERSION', - 'PHP_ZTS', - 'PHP_DEBUG', - 'PHP_MAXPATHLEN', - 'PHP_OS', - 'PHP_OS_FAMILY', - 'PHP_SAPI', - 'PHP_EOL', - 'PHP_INT_MAX', - 'PHP_INT_MIN', - 'PHP_INT_SIZE', - 'PHP_FLOAT_DIG', - 'PHP_FLOAT_EPSILON', - 'PHP_FLOAT_MIN', - 'PHP_FLOAT_MAX', - 'DEFAULT_INCLUDE_PATH', - 'PEAR_INSTALL_DIR', - 'PEAR_EXTENSION_DIR', - 'PHP_EXTENSION_DIR', - 'PHP_PREFIX', - 'PHP_BINDIR', - 'PHP_BINARY', - 'PHP_MANDIR', - 'PHP_LIBDIR', - 'PHP_DATADIR', - 'PHP_SYSCONFDIR', - 'PHP_LOCALSTATEDIR', - 'PHP_CONFIG_FILE_PATH', - 'PHP_CONFIG_FILE_SCAN_DIR', - 'PHP_SHLIB_SUFFIX', - 'PHP_FD_SETSIZE', - ], - 'customRulesetUsed' => false, - 'missingClosureNativeReturnCheckObjectTypehint' => false, - 'tmpDir' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data', - 'debugMode' => true, - 'productionMode' => false, - 'tempDir' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data', - 'rootDir' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan', - 'currentWorkingDirectory' => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - 'cliArgumentsVariablesRegistered' => true, - 'additionalConfigFiles' => [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.levelmax.neon', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/../../conf/config.stubValidator.neon', - ], - 'analysedPaths' => ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], - 'composerAutoloaderProjectPaths' => [ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - ], - 'analysedPathsFromConfig' => [], - 'allCustomConfigFiles' => [ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon', - ], - 'usedLevel' => 'max', - 'cliAutoloadFile' => null, - 'fixerTmpDir' => '/tmp/phpstan-fixer', - 'singleReflectionFile' => null, - '__parametersSchema' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ - 'bootstrap' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string|null', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'bootstrapFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'excludes_analyse' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'autoload_directories' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'autoload_files' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'level' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\AnyOf', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00set" => [ - \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00castTo" => null, - ]), - 'paths' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'featureToggles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ - 'bleedingEdge' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'disableRuntimeReflectionProvider' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'closureUsesThis' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'randomIntParameters' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'nullCoalesce' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'fileWhitespace' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'unusedClassElements' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'readComposerPhpVersion' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', - ]), - 'fileExtensions' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkAlwaysTrueCheckTypeFunctionCall' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkAlwaysTrueInstanceof' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkAlwaysTrueStrictComparison' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkClassCaseSensitivity' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkExplicitMixed' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkFunctionArgumentTypes' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkFunctionNameCase' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkGenericClassInNonGenericObjectType' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkInternalClassCaseSensitivity' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkMissingIterableValueType' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkMissingVarTagTypehint' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkArgumentsPassedByReference' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkMaybeUndefinedVariables' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkNullables' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkThisOnly' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkUnionTypes' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkExplicitMixedMissingReturn' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkPhpDocMissingReturn' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkPhpDocMethodSignatures' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkExtraArguments' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkMissingClosureNativeReturnTypehintRule' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkMissingTypehints' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkTooWideReturnTypesInProtectedAndPublicMethods' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'checkUninitializedProperties' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'inferPrivatePropertyTypeFromConstructor' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'tipsOfTheDay' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'reportMaybes' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'reportMaybesInMethodSignatures' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'reportStaticMethodSignatures' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'parallel' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ - 'jobSize' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'processTimeout' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'float', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'maximumNumberOfProcesses' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'minimumNumberOfJobsPerProcess' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'buffer' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', - ]), - 'phpVersion' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\AnyOf', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00set" => [ - \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [70100.0, 80000.0], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00castTo" => null, - ]), - 'polluteScopeWithLoopInitialAssignments' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'polluteScopeWithAlwaysIterableForeach' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'polluteCatchScopeWithTryAssignments' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'propertyAlwaysWrittenTags' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'propertyAlwaysReadTags' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'additionalConstructors' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'treatPhpDocTypesAsCertain' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'reportMagicMethods' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'reportMagicProperties' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'ignoreErrors' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\AnyOf', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00set" => [ - \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ - 'message' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ - null, - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'path' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ - null, - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', - ]), - \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ - 'message' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ - null, - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'count' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ - null, - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'path' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ - null, - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', - ]), - \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ - 'message' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ - null, - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'paths' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ - null, - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [ - null, - null, - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', - ]), - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\AnyOf\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'internalErrorsCountLimit' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'cache' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Structure', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00items" => [ - 'nodesByFileCountMax' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'nodesByStringCountMax' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'int', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', - ]), - 'reportUnmatchedIgnoredErrors' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'scopeClass' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'typeAliases' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'array', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'universalObjectCratesClasses' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'stubFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'earlyTerminatingMethodCalls' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'array', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'earlyTerminatingFunctionCalls' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'memoryLimitFile' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'tempResultCachePath' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'staticReflectionClassNamePatterns' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'dynamicConstantNames' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'customRulesetUsed' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'rootDir' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'tmpDir' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'currentWorkingDirectory' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'cliArgumentsVariablesRegistered' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'mixinExcludeClasses' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'scanFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'scanDirectories' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'fixerTmpDir' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'debugMode' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'productionMode' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'tempDir' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'additionalConfigFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'allCustomConfigFiles' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'analysedPaths' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'composerAutoloaderProjectPaths' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'analysedPathsFromConfig' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'list', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'usedLevel' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'cliAutoloadFile' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string|null', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'singleReflectionFile' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'string|null', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - 'missingClosureNativeReturnCheckObjectTypehint' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => 'bool', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - '__parametersSchema' => \_HumbugBox96739a27ace4\Nette\PhpGenerator\Dumper::createObject('_HumbugBox96739a27ace4\Nette\Schema\Elements\Type', [ - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00type" => '_HumbugBox96739a27ace4\Nette\Schema\Schema', - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00items" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00pattern" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Type\x00castTo" => null, - ]), - ], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00otherItems" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00range" => [null, null], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00required" => true, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00default" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00before" => null, - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00asserts" => [], - "\x00_HumbugBox96739a27ace4\\Nette\\Schema\\Elements\\Structure\x00castTo" => 'object', - ]), - ]; - } - - - public function createService01(): PhpParser\BuilderFactory - { - return new PhpParser\BuilderFactory; - } - - - public function createService02(): PHPStan\Parser\LexerFactory - { - return new PHPStan\Parser\LexerFactory($this->getService('07')); - } - - - public function createService03(): PhpParser\NodeVisitor\NameResolver - { - return new PhpParser\NodeVisitor\NameResolver; - } - - - public function createService04(): PhpParser\NodeVisitor\NodeConnectingVisitor - { - return new PhpParser\NodeVisitor\NodeConnectingVisitor; - } - - - public function createService05(): PhpParser\PrettyPrinter\Standard - { - return new PhpParser\PrettyPrinter\Standard; - } - - - public function createService06(): PHPStan\Broker\AnonymousClassNameHelper - { - return new PHPStan\Broker\AnonymousClassNameHelper($this->getService('046'), $this->getService('simpleRelativePathHelper')); - } - - - public function createService07(): PHPStan\Php\PhpVersion - { - return $this->getService('08')->create(); - } - - - public function createService08(): PHPStan\Php\PhpVersionFactory - { - return $this->getService('09')->create(); - } - - - public function createService09(): PHPStan\Php\PhpVersionFactoryFactory - { - return new PHPStan\Php\PhpVersionFactoryFactory( - null, - false, - [ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - ] - ); - } - - - public function createService010(): PHPStan\PhpDocParser\Lexer\Lexer - { - return new PHPStan\PhpDocParser\Lexer\Lexer; - } - - - public function createService011(): PHPStan\PhpDocParser\Parser\TypeParser - { - return new PHPStan\PhpDocParser\Parser\TypeParser($this->getService('012')); - } - - - public function createService012(): PHPStan\PhpDocParser\Parser\ConstExprParser - { - return new PHPStan\PhpDocParser\Parser\ConstExprParser; - } - - - public function createService013(): PHPStan\PhpDocParser\Parser\PhpDocParser - { - return new PHPStan\PhpDocParser\Parser\PhpDocParser($this->getService('011'), $this->getService('012')); - } - - - public function createService014(): PHPStan\PhpDoc\PhpDocInheritanceResolver - { - return new PHPStan\PhpDoc\PhpDocInheritanceResolver($this->getService('0100')); - } - - - public function createService015(): PHPStan\PhpDoc\PhpDocNodeResolver - { - return new PHPStan\PhpDoc\PhpDocNodeResolver($this->getService('019'), $this->getService('017')); - } - - - public function createService016(): PHPStan\PhpDoc\PhpDocStringResolver - { - return new PHPStan\PhpDoc\PhpDocStringResolver($this->getService('010'), $this->getService('013')); - } - - - public function createService017(): PHPStan\PhpDoc\ConstExprNodeResolver - { - return new PHPStan\PhpDoc\ConstExprNodeResolver; - } - - - public function createService018(): PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension - { - return new PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension( - $this->getService('021'), - $this->getService('reflectionProvider'), - [] - ); - } - - - public function createService019(): PHPStan\PhpDoc\TypeNodeResolver - { - return new PHPStan\PhpDoc\TypeNodeResolver($this->getService('020'), $this->getService('040')); - } - - - public function createService020(): PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider - { - return new PHPStan\PhpDoc\LazyTypeNodeResolverExtensionRegistryProvider($this->getService('040')); - } - - - public function createService021(): PHPStan\PhpDoc\TypeStringResolver - { - return new PHPStan\PhpDoc\TypeStringResolver($this->getService('010'), $this->getService('011'), $this->getService('019')); - } - - - public function createService022(): PHPStan\PhpDoc\StubValidator - { - return new PHPStan\PhpDoc\StubValidator( - [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', - ], - $this->getService('042') - ); - } - - - public function createService023(): PHPStan\Analyser\Analyser - { - return new PHPStan\Analyser\Analyser($this->getService('024'), $this->getService('registry'), $this->getService('027'), 50); - } - - - public function createService024(): PHPStan\Analyser\FileAnalyser - { - return new PHPStan\Analyser\FileAnalyser( - $this->getService('026'), - $this->getService('027'), - $this->getService('053'), - $this->getService('036'), - true - ); - } - - - public function createService025(): PHPStan\Analyser\IgnoredErrorHelper - { - return new PHPStan\Analyser\IgnoredErrorHelper($this->getService('034'), $this->getService('046'), [], true); - } - - - public function createService026(): PHPStan\Analyser\LazyScopeFactory - { - return new PHPStan\Analyser\LazyScopeFactory('PHPStan\Analyser\MutatingScope', $this->getService('040')); - } - - - public function createService027(): PHPStan\Analyser\NodeScopeResolver - { - return new PHPStan\Analyser\NodeScopeResolver( - $this->getService('reflectionProvider'), - $this->getService('nodeScopeResolverClassReflector'), - $this->getService('043'), - $this->getService('053'), - $this->getService('0100'), - $this->getService('07'), - $this->getService('014'), - $this->getService('046'), - $this->getService('typeSpecifier'), - true, - false, - true, - ['PHPUnit\Framework\Assert' => ['fail', 'markTestIncomplete', 'markTestSkipped']], - [] - ); - } - - - public function createService028(): PHPStan\Analyser\ResultCache\ResultCacheManagerFactory - { - return new class ($this) implements PHPStan\Analyser\ResultCache\ResultCacheManagerFactory { - private $container; - - - public function __construct(Container_e563100465 $container) - { - $this->container = $container; - } - - - public function create(array $fileReplacements): PHPStan\Analyser\ResultCache\ResultCacheManager - { - return new PHPStan\Analyser\ResultCache\ResultCacheManager( - $this->container->getService('037'), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCache.php', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCaches', - [ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon', - ], - ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], - [ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - ], - [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', - ], - 'max', - null, - $fileReplacements - ); - } - }; - } - - - public function createService029(): PHPStan\Analyser\ResultCache\ResultCacheClearer - { - return new PHPStan\Analyser\ResultCache\ResultCacheClearer( - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCache.php', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/resultCaches' - ); - } - - - public function createService030(): PHPStan\Cache\Cache - { - return new PHPStan\Cache\Cache($this->getService('cacheStorage')); - } - - - public function createService031(): PHPStan\Command\AnalyseApplication - { - return new PHPStan\Command\AnalyseApplication( - $this->getService('032'), - $this->getService('022'), - $this->getService('028'), - $this->getService('025'), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/.memory_limit', - 50 - ); - } - - - public function createService032(): PHPStan\Command\AnalyserRunner - { - return new PHPStan\Command\AnalyserRunner( - $this->getService('052'), - $this->getService('023'), - $this->getService('051'), - $this->getService('056') - ); - } - - - public function createService033(): PHPStan\Command\FixerApplication - { - return new PHPStan\Command\FixerApplication( - $this->getService('049'), - $this->getService('028'), - $this->getService('029'), - $this->getService('025'), - $this->getService('056'), - $this->getService('052'), - ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - '/tmp/phpstan-fixer', - 32 - ); - } - - - public function createService034(): PHPStan\Command\IgnoredRegexValidator - { - return new PHPStan\Command\IgnoredRegexValidator($this->getService('regexParser'), $this->getService('021')); - } - - - public function createService035(): PHPStan\Dependency\DependencyDumper - { - return new PHPStan\Dependency\DependencyDumper( - $this->getService('036'), - $this->getService('027'), - $this->getService('053'), - $this->getService('026'), - $this->getService('048') - ); - } - - - public function createService036(): PHPStan\Dependency\DependencyResolver - { - return new PHPStan\Dependency\DependencyResolver( - $this->getService('046'), - $this->getService('reflectionProvider'), - $this->getService('038') - ); - } - - - public function createService037(): PHPStan\Dependency\ExportedNodeFetcher - { - return new PHPStan\Dependency\ExportedNodeFetcher($this->getService('053'), $this->getService('039')); - } - - - public function createService038(): PHPStan\Dependency\ExportedNodeResolver - { - return new PHPStan\Dependency\ExportedNodeResolver($this->getService('0100'), $this->getService('05')); - } - - - public function createService039(): PHPStan\Dependency\ExportedNodeVisitor - { - return new PHPStan\Dependency\ExportedNodeVisitor($this->getService('038')); - } - - - public function createService040(): PHPStan\DependencyInjection\Container - { - return new PHPStan\DependencyInjection\MemoizingContainer($this->getService('041')); - } - - - public function createService041(): PHPStan\DependencyInjection\Nette\NetteContainer - { - return new PHPStan\DependencyInjection\Nette\NetteContainer($this); - } - - - public function createService042(): PHPStan\DependencyInjection\DerivativeContainerFactory - { - return new PHPStan\DependencyInjection\DerivativeContainerFactory( - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data', - [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.levelmax.neon', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/../../conf/config.stubValidator.neon', - ], - ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], - [ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - ], - [], - [ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon', - ], - 'max' - ); - } - - - public function createService043(): PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider - { - return new PHPStan\DependencyInjection\Reflection\LazyClassReflectionExtensionRegistryProvider($this->getService('040')); - } - - - public function createService044(): PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider - { - return new PHPStan\DependencyInjection\Type\LazyDynamicReturnTypeExtensionRegistryProvider($this->getService('040')); - } - - - public function createService045(): PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider - { - return new PHPStan\DependencyInjection\Type\LazyOperatorTypeSpecifyingExtensionRegistryProvider($this->getService('040')); - } - - - public function createService046(): PHPStan\File\FileHelper - { - return new PHPStan\File\FileHelper('/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check'); - } - - - public function createService047(): PHPStan\File\FileExcluder - { - return new PHPStan\File\FileExcluder( - $this->getService('046'), - [], - [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', - ] - ); - } - - - public function createService048(): PHPStan\File\FileFinder - { - return new PHPStan\File\FileFinder($this->getService('047'), $this->getService('046'), ['php']); - } - - - public function createService049(): PHPStan\File\FileMonitor - { - return new PHPStan\File\FileMonitor($this->getService('048')); - } - - - public function createService050(): PHPStan\NodeVisitor\StatementOrderVisitor - { - return new PHPStan\NodeVisitor\StatementOrderVisitor; - } - - - public function createService051(): PHPStan\Parallel\ParallelAnalyser - { - return new PHPStan\Parallel\ParallelAnalyser(50, 60.0, 134217728); - } - - - public function createService052(): PHPStan\Parallel\Scheduler - { - return new PHPStan\Parallel\Scheduler(20, 32, 2); - } - - - public function createService053(): PHPStan\Parser\CachedParser - { - return new PHPStan\Parser\CachedParser($this->getService('pathRoutingParser'), 1024); - } - - - public function createService054(): PHPStan\Parser\FunctionCallStatementFinder - { - return new PHPStan\Parser\FunctionCallStatementFinder; - } - - - public function createService055(): PHPStan\Parser\NodeChildrenVisitor - { - return new PHPStan\Parser\NodeChildrenVisitor; - } - - - public function createService056(): PHPStan\Process\CpuCoreCounter - { - return new PHPStan\Process\CpuCoreCounter; - } - - - public function createService057(): PHPStan\Reflection\FunctionReflectionFactory - { - return new class ($this) implements PHPStan\Reflection\FunctionReflectionFactory { - private $container; - - - public function __construct(Container_e563100465 $container) - { - $this->container = $container; - } - - - public function create( - ReflectionFunction $reflection, - PHPStan\Type\Generic\TemplateTypeMap $templateTypeMap, - array $phpDocParameterTypes, - ?PHPStan\Type\Type $phpDocReturnType, - ?PHPStan\Type\Type $phpDocThrowType, - ?string $deprecatedDescription, - bool $isDeprecated, - bool $isInternal, - bool $isFinal, - $filename - ): PHPStan\Reflection\Php\PhpFunctionReflection { - return new PHPStan\Reflection\Php\PhpFunctionReflection( - $reflection, - $this->container->getService('053'), - $this->container->getService('054'), - $this->container->getService('030'), - $templateTypeMap, - $phpDocParameterTypes, - $phpDocReturnType, - $phpDocThrowType, - $deprecatedDescription, - $isDeprecated, - $isInternal, - $isFinal, - $filename - ); - } - }; - } - - - public function createService058(): PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension - { - return new PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension; - } - - - public function createService059(): PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension - { - return new PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension; - } - - - public function createService060(): PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor; - } - - - public function createService061(): PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher( - $this->getService('060'), - $this->getService('053') - ); - } - - - public function createService062(): PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator($this->getService('061')); - } - - - public function createService063(): PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker( - $this->getService('065'), - $this->getService('068'), - $this->getService('066') - ); - } - - - public function createService064(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory - { - return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory { - private $container; - - - public function __construct(Container_e563100465 $container) - { - $this->container = $container; - } - - - public function create(string $directory): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocator - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocator( - $this->container->getService('061'), - $this->container->getService('048'), - $directory - ); - } - }; - } - - - public function createService065(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository($this->getService('064')); - } - - - public function createService066(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory - { - return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory { - private $container; - - - public function __construct(Container_e563100465 $container) - { - $this->container = $container; - } - - - public function create(_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\Composer\Psr\PsrAutoloaderMapping $mapping): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator($mapping, $this->container->getService('068')); - } - }; - } - - - public function createService067(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory - { - return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory { - private $container; - - - public function __construct(Container_e563100465 $container) - { - $this->container = $container; - } - - - public function create(string $fileName): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator( - $this->container->getService('061'), - $fileName - ); - } - }; - } - - - public function createService068(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository($this->getService('067')); - } - - - public function createService069(): PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension - { - return new PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension([]); - } - - - public function createService070(): PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension - { - return new PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension([]); - } - - - public function createService071(): PHPStan\Reflection\Php\PhpClassReflectionExtension - { - return new PHPStan\Reflection\Php\PhpClassReflectionExtension( - $this->getService('026'), - $this->getService('027'), - $this->getService('072'), - $this->getService('014'), - $this->getService('058'), - $this->getService('059'), - $this->getService('080'), - $this->getService('053'), - $this->getService('stubPhpDocProvider'), - $this->getService('reflectionProvider'), - false, - ['stdClass'] - ); - } - - - public function createService072(): PHPStan\Reflection\Php\PhpMethodReflectionFactory - { - return new class ($this) implements PHPStan\Reflection\Php\PhpMethodReflectionFactory { - private $container; - - - public function __construct(Container_e563100465 $container) - { - $this->container = $container; - } - - - public function create( - PHPStan\Reflection\ClassReflection $declaringClass, - ?PHPStan\Reflection\ClassReflection $declaringTrait, - PHPStan\Reflection\Php\BuiltinMethodReflection $reflection, - PHPStan\Type\Generic\TemplateTypeMap $templateTypeMap, - array $phpDocParameterTypes, - ?PHPStan\Type\Type $phpDocReturnType, - ?PHPStan\Type\Type $phpDocThrowType, - ?string $deprecatedDescription, - bool $isDeprecated, - bool $isInternal, - bool $isFinal, - ?string $stubPhpDocString - ): PHPStan\Reflection\Php\PhpMethodReflection { - return new PHPStan\Reflection\Php\PhpMethodReflection( - $declaringClass, - $declaringTrait, - $reflection, - $this->container->getService('reflectionProvider'), - $this->container->getService('053'), - $this->container->getService('054'), - $this->container->getService('030'), - $templateTypeMap, - $phpDocParameterTypes, - $phpDocReturnType, - $phpDocThrowType, - $deprecatedDescription, - $isDeprecated, - $isInternal, - $isFinal, - $stubPhpDocString - ); - } - }; - } - - - public function createService073(): PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension - { - return new PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension(['stdClass']); - } - - - public function createService074(): PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider - { - return new PHPStan\Reflection\ReflectionProvider\LazyReflectionProviderProvider($this->getService('040')); - } - - - public function createService075(): PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider - { - return new PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider($this->getService('080')); - } - - - public function createService076(): PHPStan\Reflection\SignatureMap\SignatureMapParser - { - return new PHPStan\Reflection\SignatureMap\SignatureMapParser($this->getService('021')); - } - - - public function createService077(): PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider - { - return new PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider($this->getService('076'), $this->getService('07')); - } - - - public function createService078(): PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider - { - return new PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider( - $this->getService('077'), - $this->getService('061'), - $this->getService('0100') - ); - } - - - public function createService079(): PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory - { - return new PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory( - $this->getService('07'), - $this->getService('077'), - $this->getService('078') - ); - } - - - public function createService080(): PHPStan\Reflection\SignatureMap\SignatureMapProvider - { - return $this->getService('079')->create(); - } - - - public function createService081(): PHPStan\Rules\ClassCaseSensitivityCheck - { - return new PHPStan\Rules\ClassCaseSensitivityCheck($this->getService('reflectionProvider')); - } - - - public function createService082(): PHPStan\Rules\Comparison\ConstantConditionRuleHelper - { - return new PHPStan\Rules\Comparison\ConstantConditionRuleHelper($this->getService('083'), true); - } - - - public function createService083(): PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper - { - return new PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper( - $this->getService('reflectionProvider'), - $this->getService('typeSpecifier'), - ['stdClass'], - true - ); - } - - - public function createService084(): PHPStan\Rules\FunctionCallParametersCheck - { - return new PHPStan\Rules\FunctionCallParametersCheck($this->getService('098'), true, true, true, true); - } - - - public function createService085(): PHPStan\Rules\FunctionDefinitionCheck - { - return new PHPStan\Rules\FunctionDefinitionCheck( - $this->getService('reflectionProvider'), - $this->getService('081'), - $this->getService('07'), - true, - false - ); - } - - - public function createService086(): PHPStan\Rules\FunctionReturnTypeCheck - { - return new PHPStan\Rules\FunctionReturnTypeCheck($this->getService('098')); - } - - - public function createService087(): PHPStan\Rules\Generics\GenericAncestorsCheck - { - return new PHPStan\Rules\Generics\GenericAncestorsCheck( - $this->getService('reflectionProvider'), - $this->getService('088'), - $this->getService('090'), - true - ); - } - - - public function createService088(): PHPStan\Rules\Generics\GenericObjectTypeCheck - { - return new PHPStan\Rules\Generics\GenericObjectTypeCheck; - } - - - public function createService089(): PHPStan\Rules\Generics\TemplateTypeCheck - { - return new PHPStan\Rules\Generics\TemplateTypeCheck($this->getService('reflectionProvider'), $this->getService('081'), [], true); - } - - - public function createService090(): PHPStan\Rules\Generics\VarianceCheck - { - return new PHPStan\Rules\Generics\VarianceCheck; - } - - - public function createService091(): PHPStan\Rules\IssetCheck - { - return new PHPStan\Rules\IssetCheck($this->getService('095'), $this->getService('096')); - } - - - public function createService092(): PHPStan\Rules\Methods\MethodSignatureRule - { - return new PHPStan\Rules\Methods\MethodSignatureRule(false, false); - } - - - public function createService093(): PHPStan\Rules\MissingTypehintCheck - { - return new PHPStan\Rules\MissingTypehintCheck($this->getService('reflectionProvider'), true, true); - } - - - public function createService094(): PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider - { - return new PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider($this->getService('040')); - } - - - public function createService095(): PHPStan\Rules\Properties\PropertyDescriptor - { - return new PHPStan\Rules\Properties\PropertyDescriptor; - } - - - public function createService096(): PHPStan\Rules\Properties\PropertyReflectionFinder - { - return new PHPStan\Rules\Properties\PropertyReflectionFinder; - } - - - public function createService097(): PHPStan\Rules\RegistryFactory - { - return new PHPStan\Rules\RegistryFactory($this->getService('040')); - } - - - public function createService098(): PHPStan\Rules\RuleLevelHelper - { - return new PHPStan\Rules\RuleLevelHelper($this->getService('reflectionProvider'), true, false, true); - } - - - public function createService099(): PHPStan\Rules\UnusedFunctionParametersCheck - { - return new PHPStan\Rules\UnusedFunctionParametersCheck; - } - - - public function createService0100(): PHPStan\Type\FileTypeMapper - { - return new PHPStan\Type\FileTypeMapper( - $this->getService('074'), - $this->getService('053'), - $this->getService('016'), - $this->getService('015'), - $this->getService('030'), - $this->getService('06') - ); - } - - - public function createService0101(): PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension; - } - - - public function createService0102(): PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension; - } - - - public function createService0103(): PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension; - } - - - public function createService0104(): PHPStan\Type\Php\ArrayFilterFunctionReturnTypeReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFilterFunctionReturnTypeReturnTypeExtension; - } - - - public function createService0105(): PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension; - } - - - public function createService0106(): PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension; - } - - - public function createService0107(): PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension; - } - - - public function createService0108(): PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension; - } - - - public function createService0109(): PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension; - } - - - public function createService0110(): PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension; - } - - - public function createService0111(): PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension; - } - - - public function createService0112(): PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension; - } - - - public function createService0113(): PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension; - } - - - public function createService0114(): PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension; - } - - - public function createService0115(): PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension; - } - - - public function createService0116(): PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension; - } - - - public function createService0117(): PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension; - } - - - public function createService0118(): PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension; - } - - - public function createService0119(): PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension - { - return new PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension; - } - - - public function createService0120(): PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension; - } - - - public function createService0121(): PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension; - } - - - public function createService0122(): PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension; - } - - - public function createService0123(): PHPStan\Type\Php\CountFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\CountFunctionReturnTypeExtension; - } - - - public function createService0124(): PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension; - } - - - public function createService0125(): PHPStan\Type\Php\CurlInitReturnTypeExtension - { - return new PHPStan\Type\Php\CurlInitReturnTypeExtension; - } - - - public function createService0126(): PHPStan\Type\Php\DateFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\DateFunctionReturnTypeExtension; - } - - - public function createService0127(): PHPStan\Type\Php\DsMapDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\DsMapDynamicReturnTypeExtension; - } - - - public function createService0128(): PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension; - } - - - public function createService0129(): PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension($this->getService('07')); - } - - - public function createService0130(): PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0131(): PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension; - } - - - public function createService0132(): PHPStan\Type\Php\GetClassDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\GetClassDynamicReturnTypeExtension; - } - - - public function createService0133(): PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0134(): PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension; - } - - - public function createService0135(): PHPStan\Type\Php\HashHmacFunctionsReturnTypeExtension - { - return new PHPStan\Type\Php\HashHmacFunctionsReturnTypeExtension; - } - - - public function createService0136(): PHPStan\Type\Php\HashFunctionsReturnTypeExtension - { - return new PHPStan\Type\Php\HashFunctionsReturnTypeExtension; - } - - - public function createService0137(): PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension - { - return new PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension; - } - - - public function createService0138(): PHPStan\Type\Php\StatDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\StatDynamicReturnTypeExtension; - } - - - public function createService0139(): PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension - { - return new PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension; - } - - - public function createService0140(): PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension - { - return new PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension($this->getService('096')); - } - - - public function createService0141(): PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension; - } - - - public function createService0142(): PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension; - } - - - public function createService0143(): PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0144(): PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension; - } - - - public function createService0145(): PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension; - } - - - public function createService0146(): PHPStan\Type\Php\VarExportFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\VarExportFunctionDynamicReturnTypeExtension; - } - - - public function createService0147(): PHPStan\Type\Php\MbFunctionsReturnTypeExtension - { - return new PHPStan\Type\Php\MbFunctionsReturnTypeExtension; - } - - - public function createService0148(): PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension; - } - - - public function createService0149(): PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension; - } - - - public function createService0150(): PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension; - } - - - public function createService0151(): PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension; - } - - - public function createService0152(): PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension; - } - - - public function createService0153(): PHPStan\Type\Php\PowFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\PowFunctionReturnTypeExtension; - } - - - public function createService0154(): PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension; - } - - - public function createService0155(): PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension; - } - - - public function createService0156(): PHPStan\Type\Php\RangeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\RangeFunctionReturnTypeExtension; - } - - - public function createService0157(): PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension; - } - - - public function createService0158(): PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension; - } - - - public function createService0159(): PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension - { - return new PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension; - } - - - public function createService0160(): PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension - { - return new PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension; - } - - - public function createService0161(): PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension; - } - - - public function createService0162(): PHPStan\Type\Php\IsIntFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsIntFunctionTypeSpecifyingExtension; - } - - - public function createService0163(): PHPStan\Type\Php\IsFloatFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsFloatFunctionTypeSpecifyingExtension; - } - - - public function createService0164(): PHPStan\Type\Php\IsNullFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsNullFunctionTypeSpecifyingExtension; - } - - - public function createService0165(): PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension; - } - - - public function createService0166(): PHPStan\Type\Php\IsBoolFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsBoolFunctionTypeSpecifyingExtension; - } - - - public function createService0167(): PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension($this->getService('0139')); - } - - - public function createService0168(): PHPStan\Type\Php\IsCountableFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsCountableFunctionTypeSpecifyingExtension; - } - - - public function createService0169(): PHPStan\Type\Php\IsResourceFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsResourceFunctionTypeSpecifyingExtension; - } - - - public function createService0170(): PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension; - } - - - public function createService0171(): PHPStan\Type\Php\IsStringFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsStringFunctionTypeSpecifyingExtension; - } - - - public function createService0172(): PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension; - } - - - public function createService0173(): PHPStan\Type\Php\IsObjectFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsObjectFunctionTypeSpecifyingExtension; - } - - - public function createService0174(): PHPStan\Type\Php\IsNumericFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsNumericFunctionTypeSpecifyingExtension; - } - - - public function createService0175(): PHPStan\Type\Php\IsScalarFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsScalarFunctionTypeSpecifyingExtension; - } - - - public function createService0176(): PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension; - } - - - public function createService0177(): PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0178(): PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension(true); - } - - - public function createService0179(): PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension - { - return new PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension; - } - - - public function createService0180(): PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension; - } - - - public function createService0181(): PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension; - } - - - public function createService0182(): PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension; - } - - - public function createService0183(): PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory - { - return new PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory( - $this->getService('phpParserDecorator'), - $this->getService('0185'), - $this->getService('0186'), - $this->getService('068'), - $this->getService('065'), - $this->getService('063'), - $this->getService('062'), - $this->getService('040'), - [], - [], - [], - [], - ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'], - [ - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/..', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - ], - [], - $this->parameters['singleReflectionFile'], - ['#^PhpParser\\\#', '#^PHPStan\\\#', '#^Hoa\\\#'] - ); - } - - - public function createService0184(): PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory - { - return new class ($this) implements PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory { - private $container; - - - public function __construct(Container_e563100465 $container) - { - $this->container = $container; - } - - - public function create( - _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector $functionReflector, - _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector $classReflector, - _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector $constantReflector - ): PHPStan\Reflection\BetterReflection\BetterReflectionProvider { - return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider( - $this->container->getService('074'), - $this->container->getService('043'), - $classReflector, - $this->container->getService('0100'), - $this->container->getService('07'), - $this->container->getService('075'), - $this->container->getService('stubPhpDocProvider'), - $this->container->getService('057'), - $this->container->getService('relativePathHelper'), - $this->container->getService('06'), - $this->container->getService('05'), - $this->container->getService('046'), - $functionReflector, - $constantReflector - ); - } - }; - } - - - public function createService0185(): _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber - { - return new _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber($this->getService('php8PhpParser')); - } - - - public function createService0186(): _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber - { - return new _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber; - } - - - public function createService0187(): PHPStan\Rules\Classes\ExistingClassInInstanceOfRule - { - return new PHPStan\Rules\Classes\ExistingClassInInstanceOfRule( - $this->getService('reflectionProvider'), - $this->getService('081'), - true - ); - } - - - public function createService0188(): PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule - { - return new PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule( - $this->getService('reflectionProvider'), - $this->getService('081'), - true - ); - } - - - public function createService0189(): PHPStan\Rules\Functions\CallToNonExistentFunctionRule - { - return new PHPStan\Rules\Functions\CallToNonExistentFunctionRule($this->getService('reflectionProvider'), false); - } - - - public function createService0190(): PHPStan\Rules\Functions\ClosureUsesThisRule - { - return new PHPStan\Rules\Functions\ClosureUsesThisRule; - } - - - public function createService0191(): PHPStan\Rules\Methods\CallMethodsRule - { - return new PHPStan\Rules\Methods\CallMethodsRule( - $this->getService('reflectionProvider'), - $this->getService('084'), - $this->getService('098'), - false, - true - ); - } - - - public function createService0192(): PHPStan\Rules\Methods\CallStaticMethodsRule - { - return new PHPStan\Rules\Methods\CallStaticMethodsRule( - $this->getService('reflectionProvider'), - $this->getService('084'), - $this->getService('098'), - $this->getService('081'), - false, - true - ); - } - - - public function createService0193(): PHPStan\Rules\Methods\OverridingMethodRule - { - return new PHPStan\Rules\Methods\OverridingMethodRule($this->getService('07'), $this->getService('092'), true); - } - - - public function createService0194(): PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule - { - return new PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule(false); - } - - - public function createService0195(): PHPStan\Rules\Missing\MissingReturnRule - { - return new PHPStan\Rules\Missing\MissingReturnRule(false, true); - } - - - public function createService0196(): PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule - { - return new PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule( - $this->getService('reflectionProvider'), - $this->getService('081'), - false - ); - } - - - public function createService0197(): PHPStan\Rules\Namespaces\ExistingNamesInUseRule - { - return new PHPStan\Rules\Namespaces\ExistingNamesInUseRule( - $this->getService('reflectionProvider'), - $this->getService('081'), - false - ); - } - - - public function createService0198(): PHPStan\Rules\Operators\InvalidIncDecOperationRule - { - return new PHPStan\Rules\Operators\InvalidIncDecOperationRule(false); - } - - - public function createService0199(): PHPStan\Rules\Properties\AccessPropertiesRule - { - return new PHPStan\Rules\Properties\AccessPropertiesRule( - $this->getService('reflectionProvider'), - $this->getService('098'), - true - ); - } - - - public function createService0200(): PHPStan\Rules\Properties\AccessStaticPropertiesRule - { - return new PHPStan\Rules\Properties\AccessStaticPropertiesRule( - $this->getService('reflectionProvider'), - $this->getService('098'), - $this->getService('081') - ); - } - - - public function createService0201(): PHPStan\Rules\Properties\ExistingClassesInPropertiesRule - { - return new PHPStan\Rules\Properties\ExistingClassesInPropertiesRule( - $this->getService('reflectionProvider'), - $this->getService('081'), - true, - false - ); - } - - - public function createService0202(): PHPStan\Rules\Properties\UninitializedPropertyRule - { - return new PHPStan\Rules\Properties\UninitializedPropertyRule($this->getService('094'), ['PHPUnit\Framework\TestCase::setUp']); - } - - - public function createService0203(): PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule - { - return new PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule( - $this->getService('098'), - $this->getService('095'), - $this->getService('096'), - false - ); - } - - - public function createService0204(): PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule - { - return new PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule( - $this->getService('095'), - $this->getService('096'), - $this->getService('098'), - false - ); - } - - - public function createService0205(): PHPStan\Rules\Variables\CompactVariablesRule - { - return new PHPStan\Rules\Variables\CompactVariablesRule(true); - } - - - public function createService0206(): PHPStan\Rules\Variables\DefinedVariableRule - { - return new PHPStan\Rules\Variables\DefinedVariableRule(true, true); - } - - - public function createService0207(): PHPStan\Rules\Regexp\RegularExpressionPatternRule - { - return new PHPStan\Rules\Regexp\RegularExpressionPatternRule; - } - - - public function createService0208(): PHPStan\Rules\Whitespace\FileWhitespaceRule - { - return new PHPStan\Rules\Whitespace\FileWhitespaceRule; - } - - - public function createService0209(): PHPStan\Rules\Variables\VariableCertaintyNullCoalesceRule - { - return new PHPStan\Rules\Variables\VariableCertaintyNullCoalesceRule; - } - - - public function createService0210(): PHPStan\Rules\Classes\MixinRule - { - return new PHPStan\Rules\Classes\MixinRule( - $this->getService('0100'), - $this->getService('reflectionProvider'), - $this->getService('081'), - $this->getService('088'), - $this->getService('093'), - true - ); - } - - - public function createService0211(): PHPStan\Rules\Functions\CallCallablesRule - { - return new PHPStan\Rules\Functions\CallCallablesRule($this->getService('084'), $this->getService('098'), true); - } - - - public function createService0212(): PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule - { - return new PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule( - $this->getService('0100'), - $this->getService('reflectionProvider'), - $this->getService('081'), - $this->getService('088'), - $this->getService('093'), - true, - true - ); - } - - - public function createService0213(): PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule - { - return new PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule($this->getService('096'), true); - } - - - public function createService0214(): PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule - { - return new PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule(true); - } - - - public function createService0215(): PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule - { - return new PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule(true); - } - - - public function createService0216(): PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule - { - return new PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule($this->getService('098'), true); - } - - - public function createService0217(): PHPStan\Rules\Functions\ReturnTypeRule - { - return new PHPStan\Rules\Functions\ReturnTypeRule( - $this->getService('086'), - $this->getService('betterReflectionFunctionReflector') - ); - } - - - public function createService0218(): PHPStan\Rules\Generators\YieldFromTypeRule - { - return new PHPStan\Rules\Generators\YieldFromTypeRule($this->getService('098'), true); - } - - - public function createService0219(): PHPStan\Rules\Generators\YieldInGeneratorRule - { - return new PHPStan\Rules\Generators\YieldInGeneratorRule(true); - } - - - public function createService0220(): PHPStan\Rules\Classes\ImpossibleInstanceOfRule - { - return new PHPStan\Rules\Classes\ImpossibleInstanceOfRule(false, true); - } - - - public function createService0221(): PHPStan\Rules\Comparison\BooleanAndConstantConditionRule - { - return new PHPStan\Rules\Comparison\BooleanAndConstantConditionRule($this->getService('082'), true); - } - - - public function createService0222(): PHPStan\Rules\Comparison\BooleanOrConstantConditionRule - { - return new PHPStan\Rules\Comparison\BooleanOrConstantConditionRule($this->getService('082'), true); - } - - - public function createService0223(): PHPStan\Rules\Comparison\BooleanNotConstantConditionRule - { - return new PHPStan\Rules\Comparison\BooleanNotConstantConditionRule($this->getService('082'), true); - } - - - public function createService0224(): PHPStan\Rules\DeadCode\UnusedPrivateConstantRule - { - return new PHPStan\Rules\DeadCode\UnusedPrivateConstantRule; - } - - - public function createService0225(): PHPStan\Rules\DeadCode\UnusedPrivateMethodRule - { - return new PHPStan\Rules\DeadCode\UnusedPrivateMethodRule; - } - - - public function createService0226(): PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule - { - return new PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule($this->getService('094'), [], [], false); - } - - - public function createService0227(): PHPStan\Rules\Comparison\ElseIfConstantConditionRule - { - return new PHPStan\Rules\Comparison\ElseIfConstantConditionRule($this->getService('082'), true); - } - - - public function createService0228(): PHPStan\Rules\Comparison\IfConstantConditionRule - { - return new PHPStan\Rules\Comparison\IfConstantConditionRule($this->getService('082'), true); - } - - - public function createService0229(): PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule - { - return new PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule($this->getService('083'), false, true); - } - - - public function createService0230(): PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule - { - return new PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule($this->getService('083'), false, true); - } - - - public function createService0231(): PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule - { - return new PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule($this->getService('083'), false, true); - } - - - public function createService0232(): PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule - { - return new PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule(false); - } - - - public function createService0233(): PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule - { - return new PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule($this->getService('082'), true); - } - - - public function createService0234(): PHPStan\Rules\Comparison\UnreachableIfBranchesRule - { - return new PHPStan\Rules\Comparison\UnreachableIfBranchesRule($this->getService('082'), true); - } - - - public function createService0235(): PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule - { - return new PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule($this->getService('082'), true); - } - - - public function createService0236(): PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule(false); - } - - - public function createService0237(): PHPStan\Rules\Variables\IssetRule - { - return new PHPStan\Rules\Variables\IssetRule($this->getService('091')); - } - - - public function createService0238(): PHPStan\Rules\Variables\NullCoalesceRule - { - return new PHPStan\Rules\Variables\NullCoalesceRule($this->getService('091')); - } - - - public function createService0239(): PHPStan\Rules\Functions\RandomIntParametersRule - { - return new PHPStan\Rules\Functions\RandomIntParametersRule($this->getService('reflectionProvider'), true); - } - - - public function createService0240(): PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension - { - return new PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension; - } - - - public function createService0241(): PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension; - } - - - public function createService0242(): PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension - { - return new PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension; - } - - - public function createService0243(): PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension - { - return new PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension; - } - - - public function createService0244(): PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension - { - return new PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension; - } - - - public function createService0245(): PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension - { - return new PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension; - } - - - public function createService0246(): PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension - { - return new PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension; - } - - - public function createService0247(): PHPStan\Rules\Deprecations\DeprecatedClassHelper - { - return new PHPStan\Rules\Deprecations\DeprecatedClassHelper($this->getService('broker')); - } - - - public function createService0248(): PHPStan\PhpDoc\StubSourceLocatorFactory - { - return new PHPStan\PhpDoc\StubSourceLocatorFactory( - $this->getService('phpParserDecorator'), - $this->getService('0185'), - $this->getService('068'), - $this->getService('040'), - [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', - ] - ); - } - - - public function createServiceBetterReflectionClassReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector - { - return new PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector($this->getService('betterReflectionSourceLocator')); - } - - - public function createServiceBetterReflectionConstantReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingConstantReflector - { - return new PHPStan\Reflection\BetterReflection\Reflector\MemoizingConstantReflector( - $this->getService('betterReflectionSourceLocator'), - $this->getService('betterReflectionClassReflector') - ); - } - - - public function createServiceBetterReflectionFunctionReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingFunctionReflector - { - return new PHPStan\Reflection\BetterReflection\Reflector\MemoizingFunctionReflector( - $this->getService('betterReflectionSourceLocator'), - $this->getService('betterReflectionClassReflector') - ); - } - - - public function createServiceBetterReflectionProvider(): PHPStan\Reflection\BetterReflection\BetterReflectionProvider - { - return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider( - $this->getService('074'), - $this->getService('043'), - $this->getService('betterReflectionClassReflector'), - $this->getService('0100'), - $this->getService('07'), - $this->getService('075'), - $this->getService('stubPhpDocProvider'), - $this->getService('057'), - $this->getService('relativePathHelper'), - $this->getService('06'), - $this->getService('05'), - $this->getService('046'), - $this->getService('betterReflectionFunctionReflector'), - $this->getService('betterReflectionConstantReflector') - ); - } - - - public function createServiceBetterReflectionSourceLocator(): _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\SourceLocator - { - return $this->getService('0183')->create(); - } - - - public function createServiceBroker(): PHPStan\Broker\Broker - { - return $this->getService('brokerFactory')->create(); - } - - - public function createServiceBrokerFactory(): PHPStan\Broker\BrokerFactory - { - return new PHPStan\Broker\BrokerFactory($this->getService('040')); - } - - - public function createServiceCacheStorage(): PHPStan\Cache\FileCacheStorage - { - return new PHPStan\Cache\FileCacheStorage('/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/data/cache/PHPStan'); - } - - - public function createServiceContainer(): Container_e563100465 - { - return $this; - } - - - public function createServiceCurrentPhpVersionLexer(): PhpParser\Lexer - { - return $this->getService('02')->create(); - } - - - public function createServiceCurrentPhpVersionPhpParser(): PhpParser\Parser\Php7 - { - return new PhpParser\Parser\Php7($this->getService('currentPhpVersionLexer')); - } - - - public function createServiceCurrentPhpVersionRichParser(): PHPStan\Parser\RichParser - { - return new PHPStan\Parser\RichParser( - $this->getService('currentPhpVersionPhpParser'), - $this->getService('currentPhpVersionLexer'), - $this->getService('03'), - $this->getService('04'), - $this->getService('050'), - $this->getService('055'), - $this->getService('07') - ); - } - - - public function createServiceCurrentPhpVersionSimpleParser(): PHPStan\Parser\SimpleParser - { - return new PHPStan\Parser\SimpleParser($this->getService('currentPhpVersionPhpParser'), $this->getService('03')); - } - - - public function createServiceErrorFormatter__baselineNeon(): PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter($this->getService('simpleRelativePathHelper')); - } - - - public function createServiceErrorFormatter__checkstyle(): PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter($this->getService('simpleRelativePathHelper')); - } - - - public function createServiceErrorFormatter__github(): PHPStan\Command\ErrorFormatter\GithubErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\GithubErrorFormatter( - $this->getService('simpleRelativePathHelper'), - $this->getService('errorFormatter.table') - ); - } - - - public function createServiceErrorFormatter__gitlab(): PHPStan\Command\ErrorFormatter\GitlabErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\GitlabErrorFormatter($this->getService('simpleRelativePathHelper')); - } - - - public function createServiceErrorFormatter__json(): PHPStan\Command\ErrorFormatter\JsonErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\JsonErrorFormatter(false); - } - - - public function createServiceErrorFormatter__junit(): PHPStan\Command\ErrorFormatter\JunitErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\JunitErrorFormatter($this->getService('simpleRelativePathHelper')); - } - - - public function createServiceErrorFormatter__prettyJson(): PHPStan\Command\ErrorFormatter\JsonErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\JsonErrorFormatter(true); - } - - - public function createServiceErrorFormatter__raw(): PHPStan\Command\ErrorFormatter\RawErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\RawErrorFormatter; - } - - - public function createServiceErrorFormatter__table(): PHPStan\Command\ErrorFormatter\TableErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\TableErrorFormatter($this->getService('relativePathHelper'), true); - } - - - public function createServiceErrorFormatter__teamcity(): PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter($this->getService('simpleRelativePathHelper')); - } - - - public function createServiceInnerRuntimeReflectionProvider(): PHPStan\Reflection\Runtime\RuntimeReflectionProvider - { - return new PHPStan\Reflection\Runtime\RuntimeReflectionProvider( - $this->getService('074'), - $this->getService('043'), - $this->getService('057'), - $this->getService('0100'), - $this->getService('07'), - $this->getService('075'), - $this->getService('stubPhpDocProvider'), - $this->getService('0185') - ); - } - - - public function createServiceNodeScopeResolverClassReflector(): _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector - { - return $this->getService('stubClassReflector'); - } - - - public function createServiceParentDirectoryRelativePathHelper(): PHPStan\File\ParentDirectoryRelativePathHelper - { - return new PHPStan\File\ParentDirectoryRelativePathHelper('/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check'); - } - - - public function createServicePathRoutingParser(): PHPStan\Parser\PathRoutingParser - { - return new PHPStan\Parser\PathRoutingParser( - $this->getService('046'), - $this->getService('currentPhpVersionRichParser'), - $this->getService('currentPhpVersionSimpleParser'), - $this->getService('php8Parser') - ); - } - - - public function createServicePhp8Lexer(): PhpParser\Lexer\Emulative - { - return new PhpParser\Lexer\Emulative; - } - - - public function createServicePhp8Parser(): PHPStan\Parser\SimpleParser - { - return new PHPStan\Parser\SimpleParser($this->getService('php8PhpParser'), $this->getService('03')); - } - - - public function createServicePhp8PhpParser(): PhpParser\Parser\Php7 - { - return new PhpParser\Parser\Php7($this->getService('php8Lexer')); - } - - - public function createServicePhpParserDecorator(): PHPStan\Parser\PhpParserDecorator - { - return new PHPStan\Parser\PhpParserDecorator($this->getService('053')); - } - - - public function createServiceReflectionProvider(): PHPStan\Reflection\BetterReflection\BetterReflectionProvider - { - return $this->getService('stubBetterReflectionProvider'); - } - - - public function createServiceReflectionProviderFactory(): PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory - { - return new PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory( - $this->getService('runtimeReflectionProvider'), - $this->getService('betterReflectionProvider'), - false - ); - } - - - public function createServiceRegexGrammarStream(): Hoa\File\Read - { - return new Hoa\File\Read('hoa://Library/Regex/Grammar.pp'); - } - - - public function createServiceRegexParser(): Hoa\Compiler\Llk\Parser - { - return Hoa\Compiler\Llk\Llk::load($this->getService('regexGrammarStream')); - } - - - public function createServiceRegistry(): PHPStan\Rules\Registry - { - return $this->getService('097')->create(); - } - - - public function createServiceRelativePathHelper(): PHPStan\File\RelativePathHelper - { - return new PHPStan\File\FuzzyRelativePathHelper( - $this->getService('parentDirectoryRelativePathHelper'), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check', - ['/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src'] - ); - } - - - public function createServiceRules__0(): PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule - { - return new PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule($this->getService('05')); - } - - - public function createServiceRules__1(): PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule - { - return new PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule; - } - - - public function createServiceRules__10(): PHPStan\Rules\Exceptions\ThrowExpressionRule - { - return new PHPStan\Rules\Exceptions\ThrowExpressionRule($this->getService('07')); - } - - - public function createServiceRules__11(): PHPStan\Rules\Functions\CallToFunctionParametersRule - { - return new PHPStan\Rules\Functions\CallToFunctionParametersRule( - $this->getService('reflectionProvider'), - $this->getService('084') - ); - } - - - public function createServiceRules__12(): PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule - { - return new PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule($this->getService('085')); - } - - - public function createServiceRules__13(): PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule - { - return new PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule($this->getService('085')); - } - - - public function createServiceRules__14(): PHPStan\Rules\Functions\ExistingClassesInTypehintsRule - { - return new PHPStan\Rules\Functions\ExistingClassesInTypehintsRule($this->getService('085')); - } - - - public function createServiceRules__15(): PHPStan\Rules\Functions\InnerFunctionRule - { - return new PHPStan\Rules\Functions\InnerFunctionRule; - } - - - public function createServiceRules__16(): PHPStan\Rules\Functions\PrintfParametersRule - { - return new PHPStan\Rules\Functions\PrintfParametersRule; - } - - - public function createServiceRules__17(): PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule - { - return new PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule; - } - - - public function createServiceRules__18(): PHPStan\Rules\Methods\ExistingClassesInTypehintsRule - { - return new PHPStan\Rules\Methods\ExistingClassesInTypehintsRule($this->getService('085')); - } - - - public function createServiceRules__19(): PHPStan\Rules\Methods\MissingMethodImplementationRule - { - return new PHPStan\Rules\Methods\MissingMethodImplementationRule; - } - - - public function createServiceRules__2(): PHPStan\Rules\Classes\ClassConstantRule - { - return new PHPStan\Rules\Classes\ClassConstantRule( - $this->getService('reflectionProvider'), - $this->getService('098'), - $this->getService('081'), - $this->getService('07') - ); - } - - - public function createServiceRules__20(): PHPStan\Rules\Properties\AccessPropertiesInAssignRule - { - return new PHPStan\Rules\Properties\AccessPropertiesInAssignRule($this->getService('0199')); - } - - - public function createServiceRules__21(): PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule - { - return new PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule($this->getService('0200')); - } - - - public function createServiceRules__22(): PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule - { - return new PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule($this->getService('07')); - } - - - public function createServiceRules__23(): PHPStan\Rules\Variables\UnsetRule - { - return new PHPStan\Rules\Variables\UnsetRule; - } - - - public function createServiceRules__24(): PHPStan\Rules\Classes\UnusedConstructorParametersRule - { - return new PHPStan\Rules\Classes\UnusedConstructorParametersRule($this->getService('099')); - } - - - public function createServiceRules__25(): PHPStan\Rules\Constants\ConstantRule - { - return new PHPStan\Rules\Constants\ConstantRule; - } - - - public function createServiceRules__26(): PHPStan\Rules\Functions\UnusedClosureUsesRule - { - return new PHPStan\Rules\Functions\UnusedClosureUsesRule($this->getService('099')); - } - - - public function createServiceRules__27(): PHPStan\Rules\Variables\VariableCertaintyInIssetRule - { - return new PHPStan\Rules\Variables\VariableCertaintyInIssetRule; - } - - - public function createServiceRules__28(): PHPStan\Rules\Cast\EchoRule - { - return new PHPStan\Rules\Cast\EchoRule($this->getService('098')); - } - - - public function createServiceRules__29(): PHPStan\Rules\Cast\InvalidCastRule - { - return new PHPStan\Rules\Cast\InvalidCastRule($this->getService('reflectionProvider'), $this->getService('098')); - } - - - public function createServiceRules__3(): PHPStan\Rules\Classes\DuplicateDeclarationRule - { - return new PHPStan\Rules\Classes\DuplicateDeclarationRule; - } - - - public function createServiceRules__30(): PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule - { - return new PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule($this->getService('05'), $this->getService('098')); - } - - - public function createServiceRules__31(): PHPStan\Rules\Cast\PrintRule - { - return new PHPStan\Rules\Cast\PrintRule($this->getService('098')); - } - - - public function createServiceRules__32(): PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule - { - return new PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule; - } - - - public function createServiceRules__33(): PHPStan\Rules\Generics\ClassAncestorsRule - { - return new PHPStan\Rules\Generics\ClassAncestorsRule($this->getService('0100'), $this->getService('087')); - } - - - public function createServiceRules__34(): PHPStan\Rules\Generics\ClassTemplateTypeRule - { - return new PHPStan\Rules\Generics\ClassTemplateTypeRule($this->getService('089')); - } - - - public function createServiceRules__35(): PHPStan\Rules\Generics\FunctionTemplateTypeRule - { - return new PHPStan\Rules\Generics\FunctionTemplateTypeRule($this->getService('0100'), $this->getService('089')); - } - - - public function createServiceRules__36(): PHPStan\Rules\Generics\FunctionSignatureVarianceRule - { - return new PHPStan\Rules\Generics\FunctionSignatureVarianceRule($this->getService('090')); - } - - - public function createServiceRules__37(): PHPStan\Rules\Generics\InterfaceAncestorsRule - { - return new PHPStan\Rules\Generics\InterfaceAncestorsRule($this->getService('0100'), $this->getService('087')); - } - - - public function createServiceRules__38(): PHPStan\Rules\Generics\InterfaceTemplateTypeRule - { - return new PHPStan\Rules\Generics\InterfaceTemplateTypeRule($this->getService('0100'), $this->getService('089')); - } - - - public function createServiceRules__39(): PHPStan\Rules\Generics\MethodTemplateTypeRule - { - return new PHPStan\Rules\Generics\MethodTemplateTypeRule($this->getService('0100'), $this->getService('089')); - } - - - public function createServiceRules__4(): PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule - { - return new PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule( - $this->getService('081'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__40(): PHPStan\Rules\Generics\MethodSignatureVarianceRule - { - return new PHPStan\Rules\Generics\MethodSignatureVarianceRule($this->getService('090')); - } - - - public function createServiceRules__41(): PHPStan\Rules\Generics\TraitTemplateTypeRule - { - return new PHPStan\Rules\Generics\TraitTemplateTypeRule($this->getService('0100'), $this->getService('089')); - } - - - public function createServiceRules__42(): PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule - { - return new PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule; - } - - - public function createServiceRules__43(): PHPStan\Rules\Operators\InvalidBinaryOperationRule - { - return new PHPStan\Rules\Operators\InvalidBinaryOperationRule($this->getService('05'), $this->getService('098')); - } - - - public function createServiceRules__44(): PHPStan\Rules\Operators\InvalidUnaryOperationRule - { - return new PHPStan\Rules\Operators\InvalidUnaryOperationRule; - } - - - public function createServiceRules__45(): PHPStan\Rules\Operators\InvalidComparisonOperationRule - { - return new PHPStan\Rules\Operators\InvalidComparisonOperationRule($this->getService('098')); - } - - - public function createServiceRules__46(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule - { - return new PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule($this->getService('0100'), $this->getService('088')); - } - - - public function createServiceRules__47(): PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule - { - return new PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule($this->getService('088')); - } - - - public function createServiceRules__48(): PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule - { - return new PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule($this->getService('010'), $this->getService('013')); - } - - - public function createServiceRules__49(): PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule - { - return new PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule($this->getService('010'), $this->getService('013')); - } - - - public function createServiceRules__5(): PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule - { - return new PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule( - $this->getService('081'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__50(): PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule - { - return new PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule($this->getService('0100')); - } - - - public function createServiceRules__51(): PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule - { - return new PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule($this->getService('0100')); - } - - - public function createServiceRules__52(): PHPStan\Rules\Arrays\AppendedArrayItemTypeRule - { - return new PHPStan\Rules\Arrays\AppendedArrayItemTypeRule($this->getService('096'), $this->getService('098')); - } - - - public function createServiceRules__53(): PHPStan\Rules\Arrays\IterableInForeachRule - { - return new PHPStan\Rules\Arrays\IterableInForeachRule($this->getService('098')); - } - - - public function createServiceRules__54(): PHPStan\Rules\Arrays\OffsetAccessAssignmentRule - { - return new PHPStan\Rules\Arrays\OffsetAccessAssignmentRule($this->getService('098')); - } - - - public function createServiceRules__55(): PHPStan\Rules\Arrays\OffsetAccessAssignOpRule - { - return new PHPStan\Rules\Arrays\OffsetAccessAssignOpRule($this->getService('098')); - } - - - public function createServiceRules__56(): PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule - { - return new PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule($this->getService('098')); - } - - - public function createServiceRules__57(): PHPStan\Rules\Arrays\UnpackIterableInArrayRule - { - return new PHPStan\Rules\Arrays\UnpackIterableInArrayRule($this->getService('098')); - } - - - public function createServiceRules__58(): PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule - { - return new PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule($this->getService('086')); - } - - - public function createServiceRules__59(): PHPStan\Rules\Functions\ClosureReturnTypeRule - { - return new PHPStan\Rules\Functions\ClosureReturnTypeRule($this->getService('086')); - } - - - public function createServiceRules__6(): PHPStan\Rules\Classes\ExistingClassInClassExtendsRule - { - return new PHPStan\Rules\Classes\ExistingClassInClassExtendsRule( - $this->getService('081'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__60(): PHPStan\Rules\Generators\YieldTypeRule - { - return new PHPStan\Rules\Generators\YieldTypeRule($this->getService('098')); - } - - - public function createServiceRules__61(): PHPStan\Rules\Methods\ReturnTypeRule - { - return new PHPStan\Rules\Methods\ReturnTypeRule($this->getService('086')); - } - - - public function createServiceRules__62(): PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule - { - return new PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule($this->getService('098')); - } - - - public function createServiceRules__63(): PHPStan\Rules\Properties\TypesAssignedToPropertiesRule - { - return new PHPStan\Rules\Properties\TypesAssignedToPropertiesRule( - $this->getService('098'), - $this->getService('095'), - $this->getService('096') - ); - } - - - public function createServiceRules__64(): PHPStan\Rules\Variables\ThrowTypeRule - { - return new PHPStan\Rules\Variables\ThrowTypeRule($this->getService('098')); - } - - - public function createServiceRules__65(): PHPStan\Rules\Variables\VariableCloningRule - { - return new PHPStan\Rules\Variables\VariableCloningRule($this->getService('098')); - } - - - public function createServiceRules__66(): PHPStan\Rules\Arrays\DeadForeachRule - { - return new PHPStan\Rules\Arrays\DeadForeachRule; - } - - - public function createServiceRules__67(): PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule - { - return new PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule; - } - - - public function createServiceRules__68(): PHPStan\Rules\DeadCode\NoopRule - { - return new PHPStan\Rules\DeadCode\NoopRule($this->getService('05')); - } - - - public function createServiceRules__69(): PHPStan\Rules\DeadCode\UnreachableStatementRule - { - return new PHPStan\Rules\DeadCode\UnreachableStatementRule; - } - - - public function createServiceRules__7(): PHPStan\Rules\Classes\ExistingClassInTraitUseRule - { - return new PHPStan\Rules\Classes\ExistingClassInTraitUseRule($this->getService('081'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__70(): PHPStan\Rules\Exceptions\DeadCatchRule - { - return new PHPStan\Rules\Exceptions\DeadCatchRule; - } - - - public function createServiceRules__71(): PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule - { - return new PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__72(): PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule - { - return new PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule($this->getService('098')); - } - - - public function createServiceRules__73(): PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule - { - return new PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule( - $this->getService('098'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__74(): PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule; - } - - - public function createServiceRules__75(): PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule; - } - - - public function createServiceRules__76(): PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule; - } - - - public function createServiceRules__77(): PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule - { - return new PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule($this->getService('093')); - } - - - public function createServiceRules__78(): PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule - { - return new PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule($this->getService('093')); - } - - - public function createServiceRules__79(): PHPStan\Rules\Methods\MissingMethodParameterTypehintRule - { - return new PHPStan\Rules\Methods\MissingMethodParameterTypehintRule($this->getService('093')); - } - - - public function createServiceRules__8(): PHPStan\Rules\Classes\InstantiationRule - { - return new PHPStan\Rules\Classes\InstantiationRule( - $this->getService('reflectionProvider'), - $this->getService('084'), - $this->getService('081') - ); - } - - - public function createServiceRules__80(): PHPStan\Rules\Methods\MissingMethodReturnTypehintRule - { - return new PHPStan\Rules\Methods\MissingMethodReturnTypehintRule($this->getService('093')); - } - - - public function createServiceRules__81(): PHPStan\Rules\Properties\MissingPropertyTypehintRule - { - return new PHPStan\Rules\Properties\MissingPropertyTypehintRule($this->getService('093')); - } - - - public function createServiceRules__82(): PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule - { - return new PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule($this->getService('broker')); - } - - - public function createServiceRules__83(): PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule - { - return new PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule($this->getService('broker'), $this->getService('098')); - } - - - public function createServiceRules__84(): PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule - { - return new PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule($this->getService('broker')); - } - - - public function createServiceRules__85(): PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule - { - return new PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule($this->getService('broker')); - } - - - public function createServiceRules__86(): PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule - { - return new PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule($this->getService('broker'), $this->getService('098')); - } - - - public function createServiceRules__87(): PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule - { - return new PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule( - $this->getService('broker'), - $this->getService('098') - ); - } - - - public function createServiceRules__88(): PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule - { - return new PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__89(): PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule - { - return new PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule($this->getService('broker')); - } - - - public function createServiceRules__9(): PHPStan\Rules\Classes\NewStaticRule - { - return new PHPStan\Rules\Classes\NewStaticRule; - } - - - public function createServiceRules__90(): PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule - { - return new PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule($this->getService('broker')); - } - - - public function createServiceRules__91(): PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule - { - return new PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule($this->getService('broker')); - } - - - public function createServiceRules__92(): PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule - { - return new PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule($this->getService('broker'), $this->getService('098')); - } - - - public function createServiceRules__93(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule - { - return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule($this->getService('0247')); - } - - - public function createServiceRules__94(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule - { - return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule($this->getService('0247')); - } - - - public function createServiceRules__95(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule - { - return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule($this->getService('0247')); - } - - - public function createServiceRules__96(): PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule - { - return new PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule; - } - - - public function createServiceRules__97(): PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule - { - return new PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule($this->getService('broker')); - } - - - public function createServiceRuntimeReflectionProvider(): PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider - { - return new PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider( - $this->getService('innerRuntimeReflectionProvider'), - $this->getService('0185'), - ['#^PhpParser\\\#', '#^PHPStan\\\#', '#^Hoa\\\#'], - null - ); - } - - - public function createServiceSimpleRelativePathHelper(): PHPStan\File\RelativePathHelper - { - return new PHPStan\File\SimpleRelativePathHelper('/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check'); - } - - - public function createServiceStubBetterReflectionProvider(): PHPStan\Reflection\BetterReflection\BetterReflectionProvider - { - return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider( - $this->getService('074'), - $this->getService('043'), - $this->getService('stubClassReflector'), - $this->getService('0100'), - $this->getService('07'), - $this->getService('075'), - $this->getService('stubPhpDocProvider'), - $this->getService('057'), - $this->getService('relativePathHelper'), - $this->getService('06'), - $this->getService('05'), - $this->getService('046'), - $this->getService('stubFunctionReflector'), - $this->getService('stubConstantReflector') - ); - } - - - public function createServiceStubClassReflector(): _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector - { - return new _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector($this->getService('stubSourceLocator')); - } - - - public function createServiceStubConstantReflector(): _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector - { - return new _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector( - $this->getService('stubSourceLocator'), - $this->getService('stubClassReflector') - ); - } - - - public function createServiceStubFunctionReflector(): _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector - { - return new _HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector( - $this->getService('stubSourceLocator'), - $this->getService('stubClassReflector') - ); - } - - - public function createServiceStubPhpDocProvider(): PHPStan\PhpDoc\StubPhpDocProvider - { - return new PHPStan\PhpDoc\StubPhpDocProvider( - $this->getService('053'), - $this->getService('0100'), - [ - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', - ] - ); - } - - - public function createServiceStubSourceLocator(): _HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\SourceLocator - { - return $this->getService('0248')->create(); - } - - - public function createServiceTypeSpecifier(): PHPStan\Analyser\TypeSpecifier - { - return $this->getService('typeSpecifierFactory')->create(); - } - - - public function createServiceTypeSpecifierFactory(): PHPStan\Analyser\TypeSpecifierFactory - { - return new PHPStan\Analyser\TypeSpecifierFactory($this->getService('040')); - } - - - public function initialize() - { - } -} diff --git a/data/cache/nette.configurator/Container_e563100465.php.lock b/data/cache/nette.configurator/Container_e563100465.php.lock deleted file mode 100644 index e69de29..0000000 diff --git a/data/cache/nette.configurator/Container_e563100465.php.meta b/data/cache/nette.configurator/Container_e563100465.php.meta deleted file mode 100644 index 3141d92..0000000 --- a/data/cache/nette.configurator/Container_e563100465.php.meta +++ /dev/null @@ -1 +0,0 @@ -a:6:{i:0;i:1;i:1;a:22:{s:134:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.neon";i:1603454189;s:143:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.levelmax.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level8.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level7.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level6.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level5.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level4.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level3.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level2.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level1.neon";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/conf/config.level0.neon";i:1603454189;s:97:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist";i:1603543935;s:125:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon";i:1596634130;s:131:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon";i:1595343150;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/../../conf/config.stubValidator.neon";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Extensions/ServicesExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Extensions/ParametersExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Extensions/PhpExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Extensions/ExtensionsExtension.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/RulesExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/ConditionalTagsExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/ParametersSchemaExtension.php";i:1603454189;}i:2;a:445:{s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/DuplicateKeysInLiteralArraysRule.php";i:1603454189;s:136:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Rule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/OffsetAccessWithoutDimForReadingRule.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ClassConstantRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/DuplicateDeclarationRule.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassesInClassImplementsRule.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassesInInterfaceExtendsRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassInClassExtendsRule.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassInTraitUseRule.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/InstantiationRule.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/NewStaticRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Exceptions/ThrowExpressionRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/CallToFunctionParametersRule.php";i:1603454189;s:185:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ExistingClassesInArrowFunctionTypehintsRule.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ExistingClassesInClosureTypehintsRule.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ExistingClassesInTypehintsRule.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/InnerFunctionRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/PrintfParametersRule.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/AbstractMethodInNonAbstractClassRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/ExistingClassesInTypehintsRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/MissingMethodImplementationRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/AccessPropertiesInAssignRule.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/AccessStaticPropertiesInAssignRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Ternary/RequireParenthesesForNestedTernaryRule.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/UnsetRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/UnusedConstructorParametersRule.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Constants/ConstantRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/UnusedClosureUsesRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/VariableCertaintyInIssetRule.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Cast/EchoRule.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Cast/InvalidCastRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Cast/InvalidPartOfEncapsedStringRule.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Cast/PrintRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/IncompatibleDefaultParameterTypeRule.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/ClassAncestorsRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/ClassTemplateTypeRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/FunctionTemplateTypeRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/FunctionSignatureVarianceRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/InterfaceAncestorsRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/InterfaceTemplateTypeRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/MethodTemplateTypeRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/MethodSignatureVarianceRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/TraitTemplateTypeRule.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/IncompatibleDefaultParameterTypeRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Operators/InvalidBinaryOperationRule.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Operators/InvalidUnaryOperationRule.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Operators/InvalidComparisonOperationRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/IncompatiblePhpDocTypeRule.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/IncompatiblePropertyPhpDocTypeRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/InvalidPhpDocTagValueRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/InvalidPHPStanDocTagRule.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/InvalidThrowsPhpDocValueRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/WrongVariableNameInVarTagRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/AppendedArrayItemTypeRule.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/IterableInForeachRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/OffsetAccessAssignmentRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/OffsetAccessAssignOpRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/OffsetAccessValueAssignmentRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/UnpackIterableInArrayRule.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ArrowFunctionReturnTypeRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ClosureReturnTypeRule.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generators/YieldTypeRule.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/ReturnTypeRule.php";i:1603454189;s:184:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/DefaultValueTypesAssignedToPropertiesRule.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/TypesAssignedToPropertiesRule.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/ThrowTypeRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/VariableCloningRule.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/DeadForeachRule.php";i:1603454189;s:189:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/NumberComparisonOperatorsConstantConditionRule.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/NoopRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/UnreachableStatementRule.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Exceptions/DeadCatchRule.php";i:1603454189;s:185:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/CallToFunctionStamentWithoutSideEffectsRule.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/CallToMethodStamentWithoutSideEffectsRule.php";i:1603454189;s:187:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/CallToStaticMethodStamentWithoutSideEffectsRule.php";i:1603454189;s:187:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideArrowFunctionReturnTypehintRule.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideClosureReturnTypehintRule.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideFunctionReturnTypehintRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/MissingFunctionParameterTypehintRule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/MissingFunctionReturnTypehintRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/MissingMethodParameterTypehintRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/MissingMethodReturnTypehintRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/MissingPropertyTypehintRule.php";i:1603454189;s:176:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/AccessDeprecatedPropertyRule.php";i:1595343150;s:182:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/AccessDeprecatedStaticPropertyRule.php";i:1595343150;s:176:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedFunctionRule.php";i:1595343150;s:174:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedMethodRule.php";i:1595343150;s:180:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedStaticMethodRule.php";i:1595343150;s:187:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/FetchingClassConstOfDeprecatedClassRule.php";i:1595343150;s:175:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/FetchingDeprecatedConstRule.php";i:1595343150;s:187:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/ImplementationOfDeprecatedInterfaceRule.php";i:1595343150;s:180:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InheritanceOfDeprecatedClassRule.php";i:1595343150;s:184:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InheritanceOfDeprecatedInterfaceRule.php";i:1595343150;s:182:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InstantiationOfDeprecatedClassRule.php";i:1595343150;s:192:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInClassMethodSignatureRule.php";i:1595343150;s:188:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInClosureSignatureRule.php";i:1595343150;s:189:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInFunctionSignatureRule.php";i:1595343150;s:173:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/UsageOfDeprecatedCastRule.php";i:1595343150;s:174:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/UsageOfDeprecatedTraitRule.php";i:1595343150;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/BuilderFactory.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/LexerFactory.php";i:1603454189;s:184:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor.php";i:1603454189;s:193:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NodeConnectingVisitor.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Broker/AnonymousClassNameHelper.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Php/PhpVersionFactoryFactory.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/phpstan/phpdoc-parser/src/Lexer/Lexer.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/phpstan/phpdoc-parser/src/Parser/TypeParser.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/phpstan/phpdoc-parser/src/Parser/ConstExprParser.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/phpstan/phpdoc-parser/src/Parser/PhpDocParser.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/PhpDocInheritanceResolver.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/PhpDocNodeResolver.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/PhpDocStringResolver.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/ConstExprNodeResolver.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeAlias/TypeAliasesTypeNodeResolverExtension.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeNodeResolverExtension.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeNodeResolver.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeStringResolver.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/StubValidator.php";i:1603454189;s:143:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/Analyser.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/FileAnalyser.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/IgnoredErrorHelper.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/LazyScopeFactory.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/ScopeFactory.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/NodeScopeResolver.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/ResultCache/ResultCacheClearer.php";i:1603454189;s:137:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Cache/Cache.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/AnalyseApplication.php";i:1603454189;s:148:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/AnalyserRunner.php";i:1603454189;s:150:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/FixerApplication.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/IgnoredRegexValidator.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/DependencyDumper.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/DependencyResolver.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/ExportedNodeFetcher.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/ExportedNodeResolver.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Dependency/ExportedNodeVisitor.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Nette/NetteContainer.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Container.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/DerivativeContainerFactory.php";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FileHelper.php";i:1603454189;s:143:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FileExcluder.php";i:1603454189;s:141:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FileFinder.php";i:1603454189;s:142:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FileMonitor.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/NodeVisitor/StatementOrderVisitor.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parallel/ParallelAnalyser.php";i:1603454189;s:144:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parallel/Scheduler.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/CachedParser.php";i:1603454189;s:139:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/Parser.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/FunctionCallStatementFinder.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/NodeChildrenVisitor.php";i:1603454189;s:148:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Process/CpuCoreCounter.php";i:1603454189;s:191:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Annotations/AnnotationsMethodsClassReflectionExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/MethodsClassReflectionExtension.php";i:1603454189;s:194:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Annotations/AnnotationsPropertiesClassReflectionExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/PropertiesClassReflectionExtension.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/CachingVisitor.php";i:1603454189;s:184:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/FileNodesFetcher.php";i:1603454189;s:189:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/AutoloadSourceLocator.php";i:1603454189;s:196:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/Type/SourceLocator.php";i:1603454189;s:214:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/ComposerJsonAndInstalledJsonSourceLocatorMaker.php";i:1603454189;s:209:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocatorRepository.php";i:1603454189;s:210:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocatorRepository.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Mixin/MixinMethodsClassReflectionExtension.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Mixin/MixinPropertiesClassReflectionExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/PhpClassReflectionExtension.php";i:1603454189;s:186:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/UniversalObjectCratesClassReflectionExtension.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BrokerAwareExtension.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/NativeFunctionReflectionProvider.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/SignatureMapParser.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/FunctionSignatureMapProvider.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/SignatureMapProvider.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/Php8SignatureMapProvider.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/SignatureMap/SignatureMapProviderFactory.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/ClassCaseSensitivityCheck.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ConstantConditionRuleHelper.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeHelper.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/FunctionCallParametersCheck.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/FunctionDefinitionCheck.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/FunctionReturnTypeCheck.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/GenericAncestorsCheck.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/GenericObjectTypeCheck.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/TemplateTypeCheck.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generics/VarianceCheck.php";i:1603454189;s:142:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/IssetCheck.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/MethodSignatureRule.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/MissingTypehintCheck.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/LazyReadWritePropertiesExtensionProvider.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/ReadWritePropertiesExtensionProvider.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/PropertyDescriptor.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/PropertyReflectionFinder.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/RegistryFactory.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/RuleLevelHelper.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/UnusedFunctionParametersCheck.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/FileTypeMapper.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArgumentBasedFunctionReturnTypeExtension.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/DynamicFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayFillFunctionReturnTypeExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayFillKeysFunctionReturnTypeExtension.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayFilterFunctionReturnTypeReturnTypeExtension.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeyDynamicReturnTypeExtension.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeyExistsFunctionTypeSpecifyingExtension.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/FunctionTypeSpecifyingExtension.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/TypeSpecifierAwareExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeyFirstDynamicReturnTypeExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeyLastDynamicReturnTypeExtension.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayKeysFunctionDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayMapFunctionReturnTypeExtension.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayMergeFunctionDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayPopFunctionReturnTypeExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayReduceFunctionReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayShiftFunctionReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArraySliceFunctionReturnTypeExtension.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArraySearchFunctionDynamicReturnTypeExtension.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayValuesFunctionDynamicReturnTypeExtension.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/Base64DecodeDynamicFunctionReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/BcMathStringOrNullReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ClosureBindDynamicReturnTypeExtension.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/DynamicStaticMethodReturnTypeExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ClosureBindToDynamicReturnTypeExtension.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/DynamicMethodReturnTypeExtension.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ClosureFromCallableDynamicReturnTypeExtension.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/CountFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/CountFunctionTypeSpecifyingExtension.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/CurlInitReturnTypeExtension.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DateFunctionReturnTypeExtension.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DsMapDynamicReturnTypeExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DioStatDynamicFunctionReturnTypeExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ExplodeFunctionDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/FilterVarDynamicReturnTypeExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/GetCalledClassDynamicReturnTypeExtension.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/GetClassDynamicReturnTypeExtension.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/GetParentClassDynamicFunctionReturnTypeExtension.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/GettimeofdayDynamicFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/HashHmacFunctionsReturnTypeExtension.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/HashFunctionsReturnTypeExtension.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/SimpleXMLElementClassPropertyReflectionExtension.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/StatDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MethodExistsTypeSpecifyingExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/PropertyExistsTypeSpecifyingExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MinMaxFunctionReturnTypeExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/PathinfoFunctionDynamicReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/PregSplitDynamicReturnTypeExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ReplaceFunctionsDynamicReturnTypeExtension.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ArrayPointerFunctionsDynamicReturnTypeExtension.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/VarExportFunctionDynamicReturnTypeExtension.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MbFunctionsReturnTypeExtension.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MbConvertEncodingFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/MicrotimeFunctionReturnTypeExtension.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/HrtimeFunctionReturnTypeExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ParseUrlFunctionDynamicReturnTypeExtension.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/VersionCompareFunctionDynamicReturnTypeExtension.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/PowFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/StrtotimeFunctionReturnTypeExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/RandomIntFunctionReturnTypeExtension.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/RangeFunctionReturnTypeExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/AssertFunctionTypeSpecifyingExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/ClassExistsFunctionTypeSpecifyingExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DefineConstantTypeSpecifyingExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/DefinedConstantTypeSpecifyingExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/InArrayFunctionTypeSpecifyingExtension.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsIntFunctionTypeSpecifyingExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsFloatFunctionTypeSpecifyingExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsNullFunctionTypeSpecifyingExtension.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsArrayFunctionTypeSpecifyingExtension.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsBoolFunctionTypeSpecifyingExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsCallableFunctionTypeSpecifyingExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsCountableFunctionTypeSpecifyingExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsResourceFunctionTypeSpecifyingExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsIterableFunctionTypeSpecifyingExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsStringFunctionTypeSpecifyingExtension.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsSubclassOfFunctionTypeSpecifyingExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsObjectFunctionTypeSpecifyingExtension.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsNumericFunctionTypeSpecifyingExtension.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsScalarFunctionTypeSpecifyingExtension.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/IsAFunctionTypeSpecifyingExtension.php";i:1603454189;s:177:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/JsonThrowOnErrorDynamicReturnTypeExtension.php";i:1603454189;s:184:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/TypeSpecifyingFunctionsDynamicReturnTypeExtension.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/SimpleXMLElementAsXMLMethodReturnTypeExtension.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/StrSplitFunctionReturnTypeExtension.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/SprintfFunctionDynamicReturnTypeExtension.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/Php/StrWordCountFunctionDynamicReturnTypeExtension.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/TypeSpecifierFactory.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/ParentDirectoryRelativePathHelper.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/RelativePathHelper.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Broker/BrokerFactory.php";i:1603454189;s:148:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Cache/FileCacheStorage.php";i:1603454189;s:144:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Cache/CacheStorage.php";i:1603454189;s:143:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/RichParser.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/SimpleParser.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/PhpParserDecorator.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/Parser.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/Parser/Php7.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/ParserAbstract.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/StubPhpDocProvider.php";i:1603454189;s:181:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider/ReflectionProviderFactory.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/BetterReflectionProvider.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider.php";i:1603454189;s:187:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/Reflector/MemoizingClassReflector.php";i:1603454189;s:188:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/Reflector/ClassReflector.php";i:1603454189;s:183:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/Reflector/Reflector.php";i:1603454189;s:190:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/Reflector/MemoizingFunctionReflector.php";i:1603454189;s:191:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/Reflector/FunctionReflector.php";i:1603454189;s:190:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/Reflector/MemoizingConstantReflector.php";i:1603454189;s:191:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/Reflector/ConstantReflector.php";i:1603454189;s:142:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/file/Read.php";i:1603454189;s:142:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/file/File.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/file/Generic.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/Stream.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Stream.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/event/Listenable.php";i:1603454189;s:145:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/event/Source.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Pathable.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Statable.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Touchable.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Bufferable.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Lockable.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/Pointable.php";i:1603454189;s:150:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/stream/IStream/In.php";i:1603454189;s:146:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/event/Listens.php";i:1603454189;s:188:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider/ClassBlacklistReflectionProvider.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Runtime/RuntimeReflectionProvider.php";i:1603454189;s:190:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/BetterReflectionSourceLocatorFactory.php";i:1603454189;s:218:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/PhpStormStubsSourceStubber.php";i:1603454189;s:205:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/SourceStubber.php";i:1603454189;s:215:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/ReflectionSourceStubber.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nikic/php-parser/lib/PhpParser/Lexer.php";i:1603454189;s:150:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Parser/PathRoutingParser.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/RawErrorFormatter.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/ErrorFormatter.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/BaselineNeonErrorFormatter.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/TableErrorFormatter.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/CheckstyleErrorFormatter.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/JsonErrorFormatter.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/JunitErrorFormatter.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/GitlabErrorFormatter.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/GithubErrorFormatter.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Command/ErrorFormatter/TeamcityErrorFormatter.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ExistingClassInInstanceOfRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Exceptions/CaughtExceptionExistenceRule.php";i:1603454189;s:171:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/CallToNonExistentFunctionRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ClosureUsesThisRule.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/CallMethodsRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/CallStaticMethodsRule.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Methods/OverridingMethodRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Missing/MissingClosureNativeReturnTypehintRule.php";i:1603454189;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Missing/MissingReturnRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Namespaces/ExistingNamesInGroupUseRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Namespaces/ExistingNamesInUseRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Operators/InvalidIncDecOperationRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/AccessPropertiesRule.php";i:1603454189;s:169:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/AccessStaticPropertiesRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/ExistingClassesInPropertiesRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/UninitializedPropertyRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/WritingToReadOnlyPropertiesRule.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Properties/ReadingWriteOnlyPropertiesRule.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/CompactVariablesRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/DefinedVariableRule.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Regexp/RegularExpressionPatternRule.php";i:1603454189;s:161:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Whitespace/FileWhitespaceRule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/VariableCertaintyNullCoalesceRule.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/MixinRule.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/CallCallablesRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/PhpDoc/InvalidPhpDocVarTagTypeRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/AppendedArrayKeyTypeRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/InvalidKeyInArrayDimFetchRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/InvalidKeyInArrayItemRule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Arrays/NonexistentOffsetInArrayDimFetchRule.php";i:1603454189;s:156:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/ReturnTypeRule.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generators/YieldFromTypeRule.php";i:1603454189;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Generators/YieldInGeneratorRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Classes/ImpossibleInstanceOfRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/BooleanAndConstantConditionRule.php";i:1603454189;s:173:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/BooleanOrConstantConditionRule.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/BooleanNotConstantConditionRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/UnusedPrivateConstantRule.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/UnusedPrivateMethodRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/DeadCode/UnusedPrivatePropertyRule.php";i:1603454189;s:170:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ElseIfConstantConditionRule.php";i:1603454189;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/IfConstantConditionRule.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeFunctionCallRule.php";i:1603454189;s:176:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeMethodCallRule.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeStaticMethodCallRule.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/StrictComparisonOfDifferentTypesRule.php";i:1603454189;s:179:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/TernaryOperatorConstantConditionRule.php";i:1603454189;s:168:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/UnreachableIfBranchesRule.php";i:1603454189;s:175:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Comparison/UnreachableTernaryElseBranchRule.php";i:1603454189;s:180:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideMethodReturnTypehintRule.php";i:1603454189;s:151:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/IssetRule.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Variables/NullCoalesceRule.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Functions/RandomIntParametersRule.php";i:1603454189;s:169:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/PhpDoc/PHPUnit/MockObjectTypeNodeResolverExtension.php";i:1596634130;s:163:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeNodeResolverAwareExtension.php";i:1603454189;s:176:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertFunctionTypeSpecifyingExtension.php";i:1596634130;s:174:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertMethodTypeSpecifyingExtension.php";i:1596634130;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/MethodTypeSpecifyingExtension.php";i:1603454189;s:180:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertStaticMethodTypeSpecifyingExtension.php";i:1596634130;s:166:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Type/StaticMethodTypeSpecifyingExtension.php";i:1603454189;s:174:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/InvocationMockerDynamicReturnTypeExtension.php";i:1596634130;s:169:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/MockBuilderDynamicReturnTypeExtension.php";i:1596634130;s:168:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/MockObjectDynamicReturnTypeExtension.php";i:1596634130;s:169:"/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/DeprecatedClassHelper.php";i:1595343150;s:157:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/StubSourceLocatorFactory.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/di/src/DI/Container.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/nette/utils/src/Utils/SmartObject.php";i:1603454189;s:147:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Php/PhpVersionFactory.php";i:1603454189;s:140:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Php/PhpVersion.php";i:1603454189;s:178:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/LazyTypeNodeResolverExtensionRegistryProvider.php";i:1603454189;s:174:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/PhpDoc/TypeNodeResolverExtensionRegistryProvider.php";i:1603454189;s:165:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/ResultCache/ResultCacheManager.php";i:1603454189;s:172:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/ResultCache/ResultCacheManagerFactory.php";i:1603454189;s:164:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/MemoizingContainer.php";i:1603454189;s:201:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Reflection/LazyClassReflectionExtensionRegistryProvider.php";i:1603454189;s:197:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Reflection/ClassReflectionExtensionRegistryProvider.php";i:1603454189;s:197:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Type/LazyDynamicReturnTypeExtensionRegistryProvider.php";i:1603454189;s:193:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Type/DynamicReturnTypeExtensionRegistryProvider.php";i:1603454189;s:202:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Type/LazyOperatorTypeSpecifyingExtensionRegistryProvider.php";i:1603454189;s:198:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/DependencyInjection/Type/OperatorTypeSpecifyingExtensionRegistryProvider.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/PhpFunctionReflection.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/FunctionReflection.php";i:1603454189;s:159:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionWithFilename.php";i:1603454189;s:162:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/FunctionReflectionFactory.php";i:1603454189;s:199:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocator.php";i:1603454189;s:206:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocatorFactory.php";i:1603454189;s:197:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedPsrAutoloaderLocator.php";i:1603454189;s:204:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedPsrAutoloaderLocatorFactory.php";i:1603454189;s:200:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocator.php";i:1603454189;s:207:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocatorFactory.php";i:1603454189;s:160:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/PhpMethodReflection.php";i:1603454189;s:153:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/MethodReflection.php";i:1603454189;s:158:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ClassMemberReflection.php";i:1603454189;s:167:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/Php/PhpMethodReflectionFactory.php";i:1603454189;s:186:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider/LazyReflectionProviderProvider.php";i:1603454189;s:182:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/ReflectionProvider/ReflectionProviderProvider.php";i:1603454189;s:148:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Analyser/TypeSpecifier.php";i:1603454189;s:154:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/FuzzyRelativePathHelper.php";i:1603454189;s:155:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/File/SimpleRelativePathHelper.php";i:1603454189;s:139:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Broker/Broker.php";i:1603454189;s:140:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Rules/Registry.php";i:1603454189;s:149:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/compiler/Llk/Llk.php";i:1603454189;s:152:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/vendor/hoa/compiler/Llk/Parser.php";i:1603454189;s:185:"phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/src/Reflection/BetterReflection/BetterReflectionProviderFactory.php";i:1603454189;}i:3;a:436:{i:0;s:53:"PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule";i:1;s:18:"PHPStan\Rules\Rule";i:2;s:57:"PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule";i:3;s:39:"PHPStan\Rules\Classes\ClassConstantRule";i:4;s:46:"PHPStan\Rules\Classes\DuplicateDeclarationRule";i:5;s:58:"PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule";i:6;s:59:"PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule";i:7;s:53:"PHPStan\Rules\Classes\ExistingClassInClassExtendsRule";i:8;s:49:"PHPStan\Rules\Classes\ExistingClassInTraitUseRule";i:9;s:39:"PHPStan\Rules\Classes\InstantiationRule";i:10;s:35:"PHPStan\Rules\Classes\NewStaticRule";i:11;s:44:"PHPStan\Rules\Exceptions\ThrowExpressionRule";i:12;s:52:"PHPStan\Rules\Functions\CallToFunctionParametersRule";i:13;s:67:"PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule";i:14;s:61:"PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule";i:15;s:54:"PHPStan\Rules\Functions\ExistingClassesInTypehintsRule";i:16;s:41:"PHPStan\Rules\Functions\InnerFunctionRule";i:17;s:44:"PHPStan\Rules\Functions\PrintfParametersRule";i:18;s:58:"PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule";i:19;s:52:"PHPStan\Rules\Methods\ExistingClassesInTypehintsRule";i:20;s:53:"PHPStan\Rules\Methods\MissingMethodImplementationRule";i:21;s:53:"PHPStan\Rules\Properties\AccessPropertiesInAssignRule";i:22;s:59:"PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule";i:23;s:60:"PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule";i:24;s:33:"PHPStan\Rules\Variables\UnsetRule";i:25;s:53:"PHPStan\Rules\Classes\UnusedConstructorParametersRule";i:26;s:36:"PHPStan\Rules\Constants\ConstantRule";i:27;s:45:"PHPStan\Rules\Functions\UnusedClosureUsesRule";i:28;s:52:"PHPStan\Rules\Variables\VariableCertaintyInIssetRule";i:29;s:27:"PHPStan\Rules\Cast\EchoRule";i:30;s:34:"PHPStan\Rules\Cast\InvalidCastRule";i:31;s:50:"PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule";i:32;s:28:"PHPStan\Rules\Cast\PrintRule";i:33;s:60:"PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule";i:34;s:41:"PHPStan\Rules\Generics\ClassAncestorsRule";i:35;s:44:"PHPStan\Rules\Generics\ClassTemplateTypeRule";i:36;s:47:"PHPStan\Rules\Generics\FunctionTemplateTypeRule";i:37;s:52:"PHPStan\Rules\Generics\FunctionSignatureVarianceRule";i:38;s:45:"PHPStan\Rules\Generics\InterfaceAncestorsRule";i:39;s:48:"PHPStan\Rules\Generics\InterfaceTemplateTypeRule";i:40;s:45:"PHPStan\Rules\Generics\MethodTemplateTypeRule";i:41;s:50:"PHPStan\Rules\Generics\MethodSignatureVarianceRule";i:42;s:44:"PHPStan\Rules\Generics\TraitTemplateTypeRule";i:43;s:58:"PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule";i:44;s:50:"PHPStan\Rules\Operators\InvalidBinaryOperationRule";i:45;s:49:"PHPStan\Rules\Operators\InvalidUnaryOperationRule";i:46;s:54:"PHPStan\Rules\Operators\InvalidComparisonOperationRule";i:47;s:47:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule";i:48;s:55:"PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule";i:49;s:46:"PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule";i:50;s:45:"PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule";i:51;s:49:"PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule";i:52;s:50:"PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule";i:53;s:46:"PHPStan\Rules\Arrays\AppendedArrayItemTypeRule";i:54;s:42:"PHPStan\Rules\Arrays\IterableInForeachRule";i:55;s:47:"PHPStan\Rules\Arrays\OffsetAccessAssignmentRule";i:56;s:45:"PHPStan\Rules\Arrays\OffsetAccessAssignOpRule";i:57;s:52:"PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule";i:58;s:46:"PHPStan\Rules\Arrays\UnpackIterableInArrayRule";i:59;s:51:"PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule";i:60;s:45:"PHPStan\Rules\Functions\ClosureReturnTypeRule";i:61;s:38:"PHPStan\Rules\Generators\YieldTypeRule";i:62;s:36:"PHPStan\Rules\Methods\ReturnTypeRule";i:63;s:66:"PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule";i:64;s:54:"PHPStan\Rules\Properties\TypesAssignedToPropertiesRule";i:65;s:37:"PHPStan\Rules\Variables\ThrowTypeRule";i:66;s:43:"PHPStan\Rules\Variables\VariableCloningRule";i:67;s:36:"PHPStan\Rules\Arrays\DeadForeachRule";i:68;s:71:"PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule";i:69;s:31:"PHPStan\Rules\DeadCode\NoopRule";i:70;s:47:"PHPStan\Rules\DeadCode\UnreachableStatementRule";i:71;s:38:"PHPStan\Rules\Exceptions\DeadCatchRule";i:72;s:67:"PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule";i:73;s:63:"PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule";i:74;s:69:"PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule";i:75;s:69:"PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule";i:76;s:63:"PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule";i:77;s:64:"PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule";i:78;s:60:"PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule";i:79;s:57:"PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule";i:80;s:56:"PHPStan\Rules\Methods\MissingMethodParameterTypehintRule";i:81;s:53:"PHPStan\Rules\Methods\MissingMethodReturnTypehintRule";i:82;s:52:"PHPStan\Rules\Properties\MissingPropertyTypehintRule";i:83;s:55:"PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule";i:84;s:61:"PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule";i:85;s:55:"PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule";i:86;s:53:"PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule";i:87;s:59:"PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule";i:88;s:66:"PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule";i:89;s:54:"PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule";i:90;s:66:"PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule";i:91;s:59:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule";i:92;s:63:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule";i:93;s:61:"PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule";i:94;s:71:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule";i:95;s:67:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule";i:96;s:68:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule";i:97;s:52:"PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule";i:98;s:53:"PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule";i:99;s:24:"PhpParser\BuilderFactory";i:100;s:27:"PHPStan\Parser\LexerFactory";i:101;s:34:"PhpParser\NodeVisitor\NameResolver";i:102;s:29:"PhpParser\NodeVisitorAbstract";i:103;s:21:"PhpParser\NodeVisitor";i:104;s:43:"PhpParser\NodeVisitor\NodeConnectingVisitor";i:105;s:32:"PhpParser\PrettyPrinter\Standard";i:106;s:31:"PhpParser\PrettyPrinterAbstract";i:107;s:39:"PHPStan\Broker\AnonymousClassNameHelper";i:108;s:36:"PHPStan\Php\PhpVersionFactoryFactory";i:109;s:32:"PHPStan\PhpDocParser\Lexer\Lexer";i:110;s:38:"PHPStan\PhpDocParser\Parser\TypeParser";i:111;s:43:"PHPStan\PhpDocParser\Parser\ConstExprParser";i:112;s:40:"PHPStan\PhpDocParser\Parser\PhpDocParser";i:113;s:40:"PHPStan\PhpDoc\PhpDocInheritanceResolver";i:114;s:33:"PHPStan\PhpDoc\PhpDocNodeResolver";i:115;s:35:"PHPStan\PhpDoc\PhpDocStringResolver";i:116;s:36:"PHPStan\PhpDoc\ConstExprNodeResolver";i:117;s:61:"PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension";i:118;s:40:"PHPStan\PhpDoc\TypeNodeResolverExtension";i:119;s:31:"PHPStan\PhpDoc\TypeNodeResolver";i:120;s:33:"PHPStan\PhpDoc\TypeStringResolver";i:121;s:28:"PHPStan\PhpDoc\StubValidator";i:122;s:25:"PHPStan\Analyser\Analyser";i:123;s:29:"PHPStan\Analyser\FileAnalyser";i:124;s:35:"PHPStan\Analyser\IgnoredErrorHelper";i:125;s:33:"PHPStan\Analyser\LazyScopeFactory";i:126;s:29:"PHPStan\Analyser\ScopeFactory";i:127;s:34:"PHPStan\Analyser\NodeScopeResolver";i:128;s:47:"PHPStan\Analyser\ResultCache\ResultCacheClearer";i:129;s:19:"PHPStan\Cache\Cache";i:130;s:34:"PHPStan\Command\AnalyseApplication";i:131;s:30:"PHPStan\Command\AnalyserRunner";i:132;s:32:"PHPStan\Command\FixerApplication";i:133;s:37:"PHPStan\Command\IgnoredRegexValidator";i:134;s:35:"PHPStan\Dependency\DependencyDumper";i:135;s:37:"PHPStan\Dependency\DependencyResolver";i:136;s:38:"PHPStan\Dependency\ExportedNodeFetcher";i:137;s:39:"PHPStan\Dependency\ExportedNodeResolver";i:138;s:38:"PHPStan\Dependency\ExportedNodeVisitor";i:139;s:48:"PHPStan\DependencyInjection\Nette\NetteContainer";i:140;s:37:"PHPStan\DependencyInjection\Container";i:141;s:54:"PHPStan\DependencyInjection\DerivativeContainerFactory";i:142;s:23:"PHPStan\File\FileHelper";i:143;s:25:"PHPStan\File\FileExcluder";i:144;s:23:"PHPStan\File\FileFinder";i:145;s:24:"PHPStan\File\FileMonitor";i:146;s:41:"PHPStan\NodeVisitor\StatementOrderVisitor";i:147;s:33:"PHPStan\Parallel\ParallelAnalyser";i:148;s:26:"PHPStan\Parallel\Scheduler";i:149;s:27:"PHPStan\Parser\CachedParser";i:150;s:21:"PHPStan\Parser\Parser";i:151;s:42:"PHPStan\Parser\FunctionCallStatementFinder";i:152;s:34:"PHPStan\Parser\NodeChildrenVisitor";i:153;s:30:"PHPStan\Process\CpuCoreCounter";i:154;s:73:"PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension";i:155;s:50:"PHPStan\Reflection\MethodsClassReflectionExtension";i:156;s:76:"PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension";i:157;s:53:"PHPStan\Reflection\PropertiesClassReflectionExtension";i:158;s:64:"PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor";i:159;s:66:"PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher";i:160;s:71:"PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator";i:161;s:78:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\Type\SourceLocator";i:162;s:96:"PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker";i:163;s:91:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository";i:164;s:92:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository";i:165;s:61:"PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension";i:166;s:64:"PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension";i:167;s:50:"PHPStan\Reflection\Php\PhpClassReflectionExtension";i:168;s:68:"PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension";i:169;s:39:"PHPStan\Reflection\BrokerAwareExtension";i:170;s:64:"PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider";i:171;s:50:"PHPStan\Reflection\SignatureMap\SignatureMapParser";i:172;s:60:"PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider";i:173;s:52:"PHPStan\Reflection\SignatureMap\SignatureMapProvider";i:174;s:56:"PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider";i:175;s:59:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory";i:176;s:39:"PHPStan\Rules\ClassCaseSensitivityCheck";i:177;s:52:"PHPStan\Rules\Comparison\ConstantConditionRuleHelper";i:178;s:50:"PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper";i:179;s:41:"PHPStan\Rules\FunctionCallParametersCheck";i:180;s:37:"PHPStan\Rules\FunctionDefinitionCheck";i:181;s:37:"PHPStan\Rules\FunctionReturnTypeCheck";i:182;s:44:"PHPStan\Rules\Generics\GenericAncestorsCheck";i:183;s:45:"PHPStan\Rules\Generics\GenericObjectTypeCheck";i:184;s:40:"PHPStan\Rules\Generics\TemplateTypeCheck";i:185;s:36:"PHPStan\Rules\Generics\VarianceCheck";i:186;s:24:"PHPStan\Rules\IssetCheck";i:187;s:41:"PHPStan\Rules\Methods\MethodSignatureRule";i:188;s:34:"PHPStan\Rules\MissingTypehintCheck";i:189;s:65:"PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider";i:190;s:61:"PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider";i:191;s:43:"PHPStan\Rules\Properties\PropertyDescriptor";i:192;s:49:"PHPStan\Rules\Properties\PropertyReflectionFinder";i:193;s:29:"PHPStan\Rules\RegistryFactory";i:194;s:29:"PHPStan\Rules\RuleLevelHelper";i:195;s:43:"PHPStan\Rules\UnusedFunctionParametersCheck";i:196;s:27:"PHPStan\Type\FileTypeMapper";i:197;s:57:"PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension";i:198;s:47:"PHPStan\Type\DynamicFunctionReturnTypeExtension";i:199;s:53:"PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension";i:200;s:57:"PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension";i:201;s:65:"PHPStan\Type\Php\ArrayFilterFunctionReturnTypeReturnTypeExtension";i:202;s:51:"PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension";i:203;s:62:"PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension";i:204;s:44:"PHPStan\Type\FunctionTypeSpecifyingExtension";i:205;s:44:"PHPStan\Analyser\TypeSpecifierAwareExtension";i:206;s:56:"PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension";i:207;s:55:"PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension";i:208;s:60:"PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension";i:209;s:52:"PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension";i:210;s:61:"PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension";i:211;s:52:"PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension";i:212;s:55:"PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension";i:213;s:54:"PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension";i:214;s:54:"PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension";i:215;s:62:"PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension";i:216;s:62:"PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension";i:217;s:63:"PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension";i:218;s:54:"PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension";i:219;s:54:"PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension";i:220;s:51:"PHPStan\Type\DynamicStaticMethodReturnTypeExtension";i:221;s:56:"PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension";i:222;s:45:"PHPStan\Type\DynamicMethodReturnTypeExtension";i:223;s:62:"PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension";i:224;s:49:"PHPStan\Type\Php\CountFunctionReturnTypeExtension";i:225;s:53:"PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension";i:226;s:44:"PHPStan\Type\Php\CurlInitReturnTypeExtension";i:227;s:48:"PHPStan\Type\Php\DateFunctionReturnTypeExtension";i:228;s:48:"PHPStan\Type\Php\DsMapDynamicReturnTypeExtension";i:229;s:58:"PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension";i:230;s:58:"PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension";i:231;s:52:"PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension";i:232;s:57:"PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension";i:233;s:51:"PHPStan\Type\Php\GetClassDynamicReturnTypeExtension";i:234;s:65:"PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension";i:235;s:63:"PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension";i:236;s:53:"PHPStan\Type\Php\HashHmacFunctionsReturnTypeExtension";i:237;s:49:"PHPStan\Type\Php\HashFunctionsReturnTypeExtension";i:238;s:65:"PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension";i:239;s:47:"PHPStan\Type\Php\StatDynamicReturnTypeExtension";i:240;s:52:"PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension";i:241;s:54:"PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension";i:242;s:50:"PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension";i:243;s:59:"PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension";i:244;s:52:"PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension";i:245;s:59:"PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension";i:246;s:64:"PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension";i:247;s:60:"PHPStan\Type\Php\VarExportFunctionDynamicReturnTypeExtension";i:248;s:47:"PHPStan\Type\Php\MbFunctionsReturnTypeExtension";i:249;s:61:"PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension";i:250;s:53:"PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension";i:251;s:50:"PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension";i:252;s:59:"PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension";i:253;s:65:"PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension";i:254;s:47:"PHPStan\Type\Php\PowFunctionReturnTypeExtension";i:255;s:53:"PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension";i:256;s:53:"PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension";i:257;s:49:"PHPStan\Type\Php\RangeFunctionReturnTypeExtension";i:258;s:54:"PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension";i:259;s:59:"PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension";i:260;s:54:"PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension";i:261;s:55:"PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension";i:262;s:55:"PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension";i:263;s:53:"PHPStan\Type\Php\IsIntFunctionTypeSpecifyingExtension";i:264;s:55:"PHPStan\Type\Php\IsFloatFunctionTypeSpecifyingExtension";i:265;s:54:"PHPStan\Type\Php\IsNullFunctionTypeSpecifyingExtension";i:266;s:55:"PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension";i:267;s:54:"PHPStan\Type\Php\IsBoolFunctionTypeSpecifyingExtension";i:268;s:58:"PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension";i:269;s:59:"PHPStan\Type\Php\IsCountableFunctionTypeSpecifyingExtension";i:270;s:58:"PHPStan\Type\Php\IsResourceFunctionTypeSpecifyingExtension";i:271;s:58:"PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension";i:272;s:56:"PHPStan\Type\Php\IsStringFunctionTypeSpecifyingExtension";i:273;s:60:"PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension";i:274;s:56:"PHPStan\Type\Php\IsObjectFunctionTypeSpecifyingExtension";i:275;s:57:"PHPStan\Type\Php\IsNumericFunctionTypeSpecifyingExtension";i:276;s:56:"PHPStan\Type\Php\IsScalarFunctionTypeSpecifyingExtension";i:277;s:51:"PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension";i:278;s:59:"PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension";i:279;s:66:"PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension";i:280;s:63:"PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension";i:281;s:52:"PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension";i:282;s:58:"PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension";i:283;s:63:"PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension";i:284;s:37:"PHPStan\Analyser\TypeSpecifierFactory";i:285;s:46:"PHPStan\File\ParentDirectoryRelativePathHelper";i:286;s:31:"PHPStan\File\RelativePathHelper";i:287;s:28:"PHPStan\Broker\BrokerFactory";i:288;s:30:"PHPStan\Cache\FileCacheStorage";i:289;s:26:"PHPStan\Cache\CacheStorage";i:290;s:25:"PHPStan\Parser\RichParser";i:291;s:27:"PHPStan\Parser\SimpleParser";i:292;s:33:"PHPStan\Parser\PhpParserDecorator";i:293;s:16:"PhpParser\Parser";i:294;s:21:"PhpParser\Parser\Php7";i:295;s:24:"PhpParser\ParserAbstract";i:296;s:33:"PHPStan\PhpDoc\StubPhpDocProvider";i:297;s:63:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory";i:298;s:60:"PHPStan\Reflection\BetterReflection\BetterReflectionProvider";i:299;s:37:"PHPStan\Reflection\ReflectionProvider";i:300;s:69:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingClassReflector";i:301;s:70:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector";i:302;s:65:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\Reflector";i:303;s:72:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingFunctionReflector";i:304;s:73:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector";i:305;s:72:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingConstantReflector";i:306;s:73:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector";i:307;s:13:"Hoa\File\Read";i:308;s:13:"Hoa\File\File";i:309;s:16:"Hoa\File\Generic";i:310;s:17:"Hoa\Stream\Stream";i:311;s:25:"Hoa\Stream\IStream\Stream";i:312;s:20:"Hoa\Event\Listenable";i:313;s:16:"Hoa\Event\Source";i:314;s:27:"Hoa\Stream\IStream\Pathable";i:315;s:27:"Hoa\Stream\IStream\Statable";i:316;s:28:"Hoa\Stream\IStream\Touchable";i:317;s:29:"Hoa\Stream\IStream\Bufferable";i:318;s:27:"Hoa\Stream\IStream\Lockable";i:319;s:28:"Hoa\Stream\IStream\Pointable";i:320;s:21:"Hoa\Stream\IStream\In";i:321;s:17:"Hoa\Event\Listens";i:322;s:70:"PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider";i:323;s:52:"PHPStan\Reflection\Runtime\RuntimeReflectionProvider";i:324;s:72:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory";i:325;s:100:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber";i:326;s:87:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\SourceStubber";i:327;s:97:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber";i:328;s:25:"PhpParser\Lexer\Emulative";i:329;s:15:"PhpParser\Lexer";i:330;s:32:"PHPStan\Parser\PathRoutingParser";i:331;s:48:"PHPStan\Command\ErrorFormatter\RawErrorFormatter";i:332;s:45:"PHPStan\Command\ErrorFormatter\ErrorFormatter";i:333;s:57:"PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter";i:334;s:50:"PHPStan\Command\ErrorFormatter\TableErrorFormatter";i:335;s:55:"PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter";i:336;s:49:"PHPStan\Command\ErrorFormatter\JsonErrorFormatter";i:337;s:50:"PHPStan\Command\ErrorFormatter\JunitErrorFormatter";i:338;s:51:"PHPStan\Command\ErrorFormatter\GitlabErrorFormatter";i:339;s:51:"PHPStan\Command\ErrorFormatter\GithubErrorFormatter";i:340;s:53:"PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter";i:341;s:51:"PHPStan\Rules\Classes\ExistingClassInInstanceOfRule";i:342;s:53:"PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule";i:343;s:53:"PHPStan\Rules\Functions\CallToNonExistentFunctionRule";i:344;s:43:"PHPStan\Rules\Functions\ClosureUsesThisRule";i:345;s:37:"PHPStan\Rules\Methods\CallMethodsRule";i:346;s:43:"PHPStan\Rules\Methods\CallStaticMethodsRule";i:347;s:42:"PHPStan\Rules\Methods\OverridingMethodRule";i:348;s:60:"PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule";i:349;s:39:"PHPStan\Rules\Missing\MissingReturnRule";i:350;s:52:"PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule";i:351;s:47:"PHPStan\Rules\Namespaces\ExistingNamesInUseRule";i:352;s:50:"PHPStan\Rules\Operators\InvalidIncDecOperationRule";i:353;s:45:"PHPStan\Rules\Properties\AccessPropertiesRule";i:354;s:51:"PHPStan\Rules\Properties\AccessStaticPropertiesRule";i:355;s:56:"PHPStan\Rules\Properties\ExistingClassesInPropertiesRule";i:356;s:50:"PHPStan\Rules\Properties\UninitializedPropertyRule";i:357;s:56:"PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule";i:358;s:55:"PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule";i:359;s:44:"PHPStan\Rules\Variables\CompactVariablesRule";i:360;s:43:"PHPStan\Rules\Variables\DefinedVariableRule";i:361;s:49:"PHPStan\Rules\Regexp\RegularExpressionPatternRule";i:362;s:43:"PHPStan\Rules\Whitespace\FileWhitespaceRule";i:363;s:57:"PHPStan\Rules\Variables\VariableCertaintyNullCoalesceRule";i:364;s:31:"PHPStan\Rules\Classes\MixinRule";i:365;s:41:"PHPStan\Rules\Functions\CallCallablesRule";i:366;s:48:"PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule";i:367;s:45:"PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule";i:368;s:50:"PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule";i:369;s:46:"PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule";i:370;s:57:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule";i:371;s:38:"PHPStan\Rules\Functions\ReturnTypeRule";i:372;s:42:"PHPStan\Rules\Generators\YieldFromTypeRule";i:373;s:45:"PHPStan\Rules\Generators\YieldInGeneratorRule";i:374;s:46:"PHPStan\Rules\Classes\ImpossibleInstanceOfRule";i:375;s:56:"PHPStan\Rules\Comparison\BooleanAndConstantConditionRule";i:376;s:55:"PHPStan\Rules\Comparison\BooleanOrConstantConditionRule";i:377;s:56:"PHPStan\Rules\Comparison\BooleanNotConstantConditionRule";i:378;s:48:"PHPStan\Rules\DeadCode\UnusedPrivateConstantRule";i:379;s:46:"PHPStan\Rules\DeadCode\UnusedPrivateMethodRule";i:380;s:48:"PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule";i:381;s:52:"PHPStan\Rules\Comparison\ElseIfConstantConditionRule";i:382;s:48:"PHPStan\Rules\Comparison\IfConstantConditionRule";i:383;s:60:"PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule";i:384;s:58:"PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule";i:385;s:64:"PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule";i:386;s:61:"PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule";i:387;s:61:"PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule";i:388;s:50:"PHPStan\Rules\Comparison\UnreachableIfBranchesRule";i:389;s:57:"PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule";i:390;s:62:"PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule";i:391;s:33:"PHPStan\Rules\Variables\IssetRule";i:392;s:40:"PHPStan\Rules\Variables\NullCoalesceRule";i:393;s:47:"PHPStan\Rules\Functions\RandomIntParametersRule";i:394;s:58:"PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension";i:395;s:45:"PHPStan\PhpDoc\TypeNodeResolverAwareExtension";i:396;s:65:"PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension";i:397;s:63:"PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension";i:398;s:42:"PHPStan\Type\MethodTypeSpecifyingExtension";i:399;s:69:"PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension";i:400;s:48:"PHPStan\Type\StaticMethodTypeSpecifyingExtension";i:401;s:63:"PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension";i:402;s:58:"PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension";i:403;s:57:"PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension";i:404;s:48:"PHPStan\Rules\Deprecations\DeprecatedClassHelper";i:405;s:39:"PHPStan\PhpDoc\StubSourceLocatorFactory";i:406;s:41:"_HumbugBox96739a27ace4\Nette\DI\Container";i:407;s:40:"_HumbugBox96739a27ace4\Nette\SmartObject";i:408;s:22:"PHPStan\Php\PhpVersion";i:409;s:29:"PHPStan\Php\PhpVersionFactory";i:410;s:56:"PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider";i:411;s:47:"PHPStan\Analyser\ResultCache\ResultCacheManager";i:412;s:54:"PHPStan\Analyser\ResultCache\ResultCacheManagerFactory";i:413;s:79:"PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider";i:414;s:75:"PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider";i:415;s:80:"PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider";i:416;s:44:"PHPStan\Reflection\Php\PhpFunctionReflection";i:417;s:37:"PHPStan\Reflection\FunctionReflection";i:418;s:41:"PHPStan\Reflection\ReflectionWithFilename";i:419;s:44:"PHPStan\Reflection\FunctionReflectionFactory";i:420;s:81:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocator";i:421;s:88:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory";i:422;s:79:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator";i:423;s:86:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory";i:424;s:82:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator";i:425;s:89:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory";i:426;s:42:"PHPStan\Reflection\Php\PhpMethodReflection";i:427;s:35:"PHPStan\Reflection\MethodReflection";i:428;s:40:"PHPStan\Reflection\ClassMemberReflection";i:429;s:49:"PHPStan\Reflection\Php\PhpMethodReflectionFactory";i:430;s:64:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider";i:431;s:30:"PHPStan\Analyser\TypeSpecifier";i:432;s:21:"PHPStan\Broker\Broker";i:433;s:22:"PHPStan\Rules\Registry";i:434;s:23:"Hoa\Compiler\Llk\Parser";i:435;s:67:"PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory";}i:4;a:258:{i:0;s:66:"PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule::__construct";i:1;s:52:"PHPStan\Rules\Classes\ClassConstantRule::__construct";i:2;s:71:"PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule::__construct";i:3;s:72:"PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule::__construct";i:4;s:66:"PHPStan\Rules\Classes\ExistingClassInClassExtendsRule::__construct";i:5;s:62:"PHPStan\Rules\Classes\ExistingClassInTraitUseRule::__construct";i:6;s:52:"PHPStan\Rules\Classes\InstantiationRule::__construct";i:7;s:57:"PHPStan\Rules\Exceptions\ThrowExpressionRule::__construct";i:8;s:65:"PHPStan\Rules\Functions\CallToFunctionParametersRule::__construct";i:9;s:80:"PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule::__construct";i:10;s:74:"PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule::__construct";i:11;s:67:"PHPStan\Rules\Functions\ExistingClassesInTypehintsRule::__construct";i:12;s:65:"PHPStan\Rules\Methods\ExistingClassesInTypehintsRule::__construct";i:13;s:66:"PHPStan\Rules\Properties\AccessPropertiesInAssignRule::__construct";i:14;s:72:"PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule::__construct";i:15;s:73:"PHPStan\Rules\Ternary\RequireParenthesesForNestedTernaryRule::__construct";i:16;s:66:"PHPStan\Rules\Classes\UnusedConstructorParametersRule::__construct";i:17;s:58:"PHPStan\Rules\Functions\UnusedClosureUsesRule::__construct";i:18;s:40:"PHPStan\Rules\Cast\EchoRule::__construct";i:19;s:47:"PHPStan\Rules\Cast\InvalidCastRule::__construct";i:20;s:63:"PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule::__construct";i:21;s:41:"PHPStan\Rules\Cast\PrintRule::__construct";i:22;s:54:"PHPStan\Rules\Generics\ClassAncestorsRule::__construct";i:23;s:57:"PHPStan\Rules\Generics\ClassTemplateTypeRule::__construct";i:24;s:60:"PHPStan\Rules\Generics\FunctionTemplateTypeRule::__construct";i:25;s:65:"PHPStan\Rules\Generics\FunctionSignatureVarianceRule::__construct";i:26;s:58:"PHPStan\Rules\Generics\InterfaceAncestorsRule::__construct";i:27;s:61:"PHPStan\Rules\Generics\InterfaceTemplateTypeRule::__construct";i:28;s:58:"PHPStan\Rules\Generics\MethodTemplateTypeRule::__construct";i:29;s:63:"PHPStan\Rules\Generics\MethodSignatureVarianceRule::__construct";i:30;s:57:"PHPStan\Rules\Generics\TraitTemplateTypeRule::__construct";i:31;s:63:"PHPStan\Rules\Operators\InvalidBinaryOperationRule::__construct";i:32;s:67:"PHPStan\Rules\Operators\InvalidComparisonOperationRule::__construct";i:33;s:60:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule::__construct";i:34;s:68:"PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule::__construct";i:35;s:59:"PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule::__construct";i:36;s:58:"PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule::__construct";i:37;s:62:"PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule::__construct";i:38;s:63:"PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule::__construct";i:39;s:59:"PHPStan\Rules\Arrays\AppendedArrayItemTypeRule::__construct";i:40;s:55:"PHPStan\Rules\Arrays\IterableInForeachRule::__construct";i:41;s:60:"PHPStan\Rules\Arrays\OffsetAccessAssignmentRule::__construct";i:42;s:58:"PHPStan\Rules\Arrays\OffsetAccessAssignOpRule::__construct";i:43;s:65:"PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule::__construct";i:44;s:59:"PHPStan\Rules\Arrays\UnpackIterableInArrayRule::__construct";i:45;s:64:"PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule::__construct";i:46;s:58:"PHPStan\Rules\Functions\ClosureReturnTypeRule::__construct";i:47;s:51:"PHPStan\Rules\Generators\YieldTypeRule::__construct";i:48;s:49:"PHPStan\Rules\Methods\ReturnTypeRule::__construct";i:49;s:79:"PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule::__construct";i:50;s:67:"PHPStan\Rules\Properties\TypesAssignedToPropertiesRule::__construct";i:51;s:50:"PHPStan\Rules\Variables\ThrowTypeRule::__construct";i:52;s:56:"PHPStan\Rules\Variables\VariableCloningRule::__construct";i:53;s:44:"PHPStan\Rules\DeadCode\NoopRule::__construct";i:54;s:80:"PHPStan\Rules\Functions\CallToFunctionStamentWithoutSideEffectsRule::__construct";i:55;s:76:"PHPStan\Rules\Methods\CallToMethodStamentWithoutSideEffectsRule::__construct";i:56;s:82:"PHPStan\Rules\Methods\CallToStaticMethodStamentWithoutSideEffectsRule::__construct";i:57;s:73:"PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule::__construct";i:58;s:70:"PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule::__construct";i:59;s:69:"PHPStan\Rules\Methods\MissingMethodParameterTypehintRule::__construct";i:60;s:66:"PHPStan\Rules\Methods\MissingMethodReturnTypehintRule::__construct";i:61;s:65:"PHPStan\Rules\Properties\MissingPropertyTypehintRule::__construct";i:62;s:68:"PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule::__construct";i:63;s:74:"PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule::__construct";i:64;s:68:"PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule::__construct";i:65;s:66:"PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule::__construct";i:66;s:72:"PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule::__construct";i:67;s:79:"PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule::__construct";i:68;s:67:"PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule::__construct";i:69;s:79:"PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule::__construct";i:70;s:72:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule::__construct";i:71;s:76:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule::__construct";i:72;s:74:"PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule::__construct";i:73;s:84:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule::__construct";i:74;s:80:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule::__construct";i:75;s:81:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule::__construct";i:76;s:66:"PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule::__construct";i:77;s:40:"PHPStan\Parser\LexerFactory::__construct";i:78;s:47:"PhpParser\NodeVisitor\NameResolver::__construct";i:79;s:44:"PhpParser\PrettyPrinterAbstract::__construct";i:80;s:52:"PHPStan\Broker\AnonymousClassNameHelper::__construct";i:81;s:37:"PHPStan\Php\PhpVersionFactory::create";i:82;s:44:"PHPStan\Php\PhpVersionFactoryFactory::create";i:83;s:49:"PHPStan\Php\PhpVersionFactoryFactory::__construct";i:84;s:51:"PHPStan\PhpDocParser\Parser\TypeParser::__construct";i:85;s:53:"PHPStan\PhpDocParser\Parser\PhpDocParser::__construct";i:86;s:53:"PHPStan\PhpDoc\PhpDocInheritanceResolver::__construct";i:87;s:46:"PHPStan\PhpDoc\PhpDocNodeResolver::__construct";i:88;s:48:"PHPStan\PhpDoc\PhpDocStringResolver::__construct";i:89;s:74:"PHPStan\PhpDoc\TypeAlias\TypeAliasesTypeNodeResolverExtension::__construct";i:90;s:44:"PHPStan\PhpDoc\TypeNodeResolver::__construct";i:91;s:73:"PHPStan\PhpDoc\LazyTypeNodeResolverExtensionRegistryProvider::__construct";i:92;s:46:"PHPStan\PhpDoc\TypeStringResolver::__construct";i:93;s:41:"PHPStan\PhpDoc\StubValidator::__construct";i:94;s:38:"PHPStan\Analyser\Analyser::__construct";i:95;s:42:"PHPStan\Analyser\FileAnalyser::__construct";i:96;s:48:"PHPStan\Analyser\IgnoredErrorHelper::__construct";i:97;s:46:"PHPStan\Analyser\LazyScopeFactory::__construct";i:98;s:47:"PHPStan\Analyser\NodeScopeResolver::__construct";i:99;s:60:"PHPStan\Analyser\ResultCache\ResultCacheManager::__construct";i:100;s:60:"PHPStan\Analyser\ResultCache\ResultCacheClearer::__construct";i:101;s:32:"PHPStan\Cache\Cache::__construct";i:102;s:47:"PHPStan\Command\AnalyseApplication::__construct";i:103;s:43:"PHPStan\Command\AnalyserRunner::__construct";i:104;s:45:"PHPStan\Command\FixerApplication::__construct";i:105;s:50:"PHPStan\Command\IgnoredRegexValidator::__construct";i:106;s:48:"PHPStan\Dependency\DependencyDumper::__construct";i:107;s:50:"PHPStan\Dependency\DependencyResolver::__construct";i:108;s:51:"PHPStan\Dependency\ExportedNodeFetcher::__construct";i:109;s:52:"PHPStan\Dependency\ExportedNodeResolver::__construct";i:110;s:51:"PHPStan\Dependency\ExportedNodeVisitor::__construct";i:111;s:59:"PHPStan\DependencyInjection\MemoizingContainer::__construct";i:112;s:61:"PHPStan\DependencyInjection\Nette\NetteContainer::__construct";i:113;s:67:"PHPStan\DependencyInjection\DerivativeContainerFactory::__construct";i:114;s:96:"PHPStan\DependencyInjection\Reflection\LazyClassReflectionExtensionRegistryProvider::__construct";i:115;s:92:"PHPStan\DependencyInjection\Type\LazyDynamicReturnTypeExtensionRegistryProvider::__construct";i:116;s:97:"PHPStan\DependencyInjection\Type\LazyOperatorTypeSpecifyingExtensionRegistryProvider::__construct";i:117;s:36:"PHPStan\File\FileHelper::__construct";i:118;s:38:"PHPStan\File\FileExcluder::__construct";i:119;s:36:"PHPStan\File\FileFinder::__construct";i:120;s:37:"PHPStan\File\FileMonitor::__construct";i:121;s:46:"PHPStan\Parallel\ParallelAnalyser::__construct";i:122;s:39:"PHPStan\Parallel\Scheduler::__construct";i:123;s:40:"PHPStan\Parser\CachedParser::__construct";i:124;s:57:"PHPStan\Reflection\Php\PhpFunctionReflection::__construct";i:125;s:79:"PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher::__construct";i:126;s:84:"PHPStan\Reflection\BetterReflection\SourceLocator\AutoloadSourceLocator::__construct";i:127;s:109:"PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker::__construct";i:128;s:94:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocator::__construct";i:129;s:104:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository::__construct";i:130;s:92:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator::__construct";i:131;s:95:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator::__construct";i:132;s:105:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository::__construct";i:133;s:74:"PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension::__construct";i:134;s:77:"PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension::__construct";i:135;s:63:"PHPStan\Reflection\Php\PhpClassReflectionExtension::__construct";i:136;s:55:"PHPStan\Reflection\Php\PhpMethodReflection::__construct";i:137;s:81:"PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension::__construct";i:138;s:81:"PHPStan\Reflection\ReflectionProvider\LazyReflectionProviderProvider::__construct";i:139;s:77:"PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider::__construct";i:140;s:63:"PHPStan\Reflection\SignatureMap\SignatureMapParser::__construct";i:141;s:73:"PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider::__construct";i:142;s:69:"PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider::__construct";i:143;s:72:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory::__construct";i:144;s:67:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory::create";i:145;s:52:"PHPStan\Rules\ClassCaseSensitivityCheck::__construct";i:146;s:65:"PHPStan\Rules\Comparison\ConstantConditionRuleHelper::__construct";i:147;s:63:"PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper::__construct";i:148;s:54:"PHPStan\Rules\FunctionCallParametersCheck::__construct";i:149;s:50:"PHPStan\Rules\FunctionDefinitionCheck::__construct";i:150;s:50:"PHPStan\Rules\FunctionReturnTypeCheck::__construct";i:151;s:57:"PHPStan\Rules\Generics\GenericAncestorsCheck::__construct";i:152;s:53:"PHPStan\Rules\Generics\TemplateTypeCheck::__construct";i:153;s:37:"PHPStan\Rules\IssetCheck::__construct";i:154;s:54:"PHPStan\Rules\Methods\MethodSignatureRule::__construct";i:155;s:47:"PHPStan\Rules\MissingTypehintCheck::__construct";i:156;s:78:"PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider::__construct";i:157;s:42:"PHPStan\Rules\RegistryFactory::__construct";i:158;s:42:"PHPStan\Rules\RuleLevelHelper::__construct";i:159;s:40:"PHPStan\Type\FileTypeMapper::__construct";i:160;s:71:"PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension::__construct";i:161;s:65:"PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension::__construct";i:162;s:78:"PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension::__construct";i:163;s:67:"PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension::__construct";i:164;s:65:"PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension::__construct";i:165;s:60:"PHPStan\Type\Php\MbFunctionsReturnTypeExtension::__construct";i:166;s:71:"PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension::__construct";i:167;s:72:"PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension::__construct";i:168;s:79:"PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension::__construct";i:169;s:45:"PHPStan\Analyser\TypeSpecifierFactory::create";i:170;s:50:"PHPStan\Analyser\TypeSpecifierFactory::__construct";i:171;s:49:"PHPStan\File\FuzzyRelativePathHelper::__construct";i:172;s:50:"PHPStan\File\SimpleRelativePathHelper::__construct";i:173;s:59:"PHPStan\File\ParentDirectoryRelativePathHelper::__construct";i:174;s:36:"PHPStan\Broker\BrokerFactory::create";i:175;s:41:"PHPStan\Broker\BrokerFactory::__construct";i:176;s:43:"PHPStan\Cache\FileCacheStorage::__construct";i:177;s:38:"PHPStan\Parser\RichParser::__construct";i:178;s:40:"PHPStan\Parser\SimpleParser::__construct";i:179;s:46:"PHPStan\Parser\PhpParserDecorator::__construct";i:180;s:35:"PHPStan\Parser\LexerFactory::create";i:181;s:37:"PhpParser\ParserAbstract::__construct";i:182;s:37:"PHPStan\Rules\RegistryFactory::create";i:183;s:46:"PHPStan\PhpDoc\StubPhpDocProvider::__construct";i:184;s:76:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory::__construct";i:185;s:53:"_HumbugBox96739a27ace4\Nette\DI\Container::getService";i:186;s:80:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory::create";i:187;s:83:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ClassReflector::__construct";i:189;s:86:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\FunctionReflector::__construct";i:190;s:86:"_HumbugBox96739a27ace4\Roave\BetterReflection\Reflector\ConstantReflector::__construct";i:191;s:73:"PHPStan\Reflection\BetterReflection\BetterReflectionProvider::__construct";i:192;s:26:"Hoa\Compiler\Llk\Llk::load";i:193;s:26:"Hoa\File\Read::__construct";i:194;s:83:"PHPStan\Reflection\ReflectionProvider\ClassBlacklistReflectionProvider::__construct";i:195;s:65:"PHPStan\Reflection\Runtime\RuntimeReflectionProvider::__construct";i:196;s:85:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory::__construct";i:198;s:113:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber::__construct";i:199;s:110:"_HumbugBox96739a27ace4\Roave\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber::__construct";i:200;s:38:"PhpParser\Lexer\Emulative::__construct";i:203;s:45:"PHPStan\Parser\PathRoutingParser::__construct";i:204;s:70:"PHPStan\Command\ErrorFormatter\BaselineNeonErrorFormatter::__construct";i:205;s:63:"PHPStan\Command\ErrorFormatter\TableErrorFormatter::__construct";i:206;s:68:"PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter::__construct";i:207;s:62:"PHPStan\Command\ErrorFormatter\JsonErrorFormatter::__construct";i:208;s:63:"PHPStan\Command\ErrorFormatter\JunitErrorFormatter::__construct";i:210;s:64:"PHPStan\Command\ErrorFormatter\GitlabErrorFormatter::__construct";i:211;s:64:"PHPStan\Command\ErrorFormatter\GithubErrorFormatter::__construct";i:212;s:66:"PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter::__construct";i:213;s:64:"PHPStan\Rules\Classes\ExistingClassInInstanceOfRule::__construct";i:214;s:66:"PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule::__construct";i:215;s:66:"PHPStan\Rules\Functions\CallToNonExistentFunctionRule::__construct";i:216;s:50:"PHPStan\Rules\Methods\CallMethodsRule::__construct";i:217;s:56:"PHPStan\Rules\Methods\CallStaticMethodsRule::__construct";i:218;s:55:"PHPStan\Rules\Methods\OverridingMethodRule::__construct";i:219;s:73:"PHPStan\Rules\Missing\MissingClosureNativeReturnTypehintRule::__construct";i:220;s:52:"PHPStan\Rules\Missing\MissingReturnRule::__construct";i:221;s:65:"PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule::__construct";i:222;s:60:"PHPStan\Rules\Namespaces\ExistingNamesInUseRule::__construct";i:223;s:63:"PHPStan\Rules\Operators\InvalidIncDecOperationRule::__construct";i:224;s:58:"PHPStan\Rules\Properties\AccessPropertiesRule::__construct";i:225;s:64:"PHPStan\Rules\Properties\AccessStaticPropertiesRule::__construct";i:226;s:69:"PHPStan\Rules\Properties\ExistingClassesInPropertiesRule::__construct";i:227;s:63:"PHPStan\Rules\Properties\UninitializedPropertyRule::__construct";i:228;s:69:"PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule::__construct";i:229;s:68:"PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule::__construct";i:230;s:57:"PHPStan\Rules\Variables\CompactVariablesRule::__construct";i:231;s:56:"PHPStan\Rules\Variables\DefinedVariableRule::__construct";i:232;s:44:"PHPStan\Rules\Classes\MixinRule::__construct";i:233;s:54:"PHPStan\Rules\Functions\CallCallablesRule::__construct";i:234;s:61:"PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule::__construct";i:235;s:58:"PHPStan\Rules\Arrays\AppendedArrayKeyTypeRule::__construct";i:236;s:63:"PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule::__construct";i:237;s:59:"PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule::__construct";i:238;s:70:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule::__construct";i:239;s:51:"PHPStan\Rules\Functions\ReturnTypeRule::__construct";i:240;s:55:"PHPStan\Rules\Generators\YieldFromTypeRule::__construct";i:241;s:58:"PHPStan\Rules\Generators\YieldInGeneratorRule::__construct";i:242;s:59:"PHPStan\Rules\Classes\ImpossibleInstanceOfRule::__construct";i:243;s:69:"PHPStan\Rules\Comparison\BooleanAndConstantConditionRule::__construct";i:244;s:68:"PHPStan\Rules\Comparison\BooleanOrConstantConditionRule::__construct";i:245;s:69:"PHPStan\Rules\Comparison\BooleanNotConstantConditionRule::__construct";i:246;s:61:"PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule::__construct";i:247;s:65:"PHPStan\Rules\Comparison\ElseIfConstantConditionRule::__construct";i:248;s:61:"PHPStan\Rules\Comparison\IfConstantConditionRule::__construct";i:249;s:73:"PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule::__construct";i:250;s:71:"PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule::__construct";i:251;s:77:"PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule::__construct";i:252;s:74:"PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule::__construct";i:253;s:74:"PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule::__construct";i:254;s:63:"PHPStan\Rules\Comparison\UnreachableIfBranchesRule::__construct";i:255;s:70:"PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule::__construct";i:256;s:75:"PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule::__construct";i:257;s:46:"PHPStan\Rules\Variables\IssetRule::__construct";i:258;s:53:"PHPStan\Rules\Variables\NullCoalesceRule::__construct";i:259;s:60:"PHPStan\Rules\Functions\RandomIntParametersRule::__construct";i:260;s:61:"PHPStan\Rules\Deprecations\DeprecatedClassHelper::__construct";i:261;s:52:"PHPStan\PhpDoc\StubSourceLocatorFactory::__construct";i:266;s:47:"PHPStan\PhpDoc\StubSourceLocatorFactory::create";}i:5;s:32:"f677b255f7a5a3332bde22eb23415ecf";} \ No newline at end of file diff --git a/data/resultCache.php b/data/resultCache.php deleted file mode 100644 index df53bcc..0000000 --- a/data/resultCache.php +++ /dev/null @@ -1,2010 +0,0 @@ - 1603543954, - 'meta' => array ( - 'cacheVersion' => 'v5-exportedNodes', - 'phpstanVersion' => '0.12.51', - 'phpVersion' => 70411, - 'configFiles' => - array ( - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/phpstan.neon.dist' => '957bcbfbc4d1e3c29b684d1f1eede4d692c9f335', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/extension.neon' => 'c1f76256fe886a8b1fb46f578a0b774fdd966a8f', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-deprecation-rules/rules.neon' => '26f00a5fb07d1a8d4b693c9dab089f0c213269f5', - ), - 'analysedPaths' => - array ( - 0 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src', - ), - 'composerLocks' => - array ( - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/composer.lock' => '595f63d5ab720b24c4cdfd0230d023b4c6272b96', - ), - 'cliAutoloadFile' => NULL, - 'phpExtensions' => - array ( - 0 => 'Core', - 1 => 'FFI', - 2 => 'PDO', - 3 => 'Phar', - 4 => 'Reflection', - 5 => 'SPL', - 6 => 'SimpleXML', - 7 => 'Zend OPcache', - 8 => 'bcmath', - 9 => 'blackfire', - 10 => 'calendar', - 11 => 'ctype', - 12 => 'curl', - 13 => 'date', - 14 => 'dom', - 15 => 'exif', - 16 => 'fileinfo', - 17 => 'filter', - 18 => 'ftp', - 19 => 'gettext', - 20 => 'hash', - 21 => 'iconv', - 22 => 'igbinary', - 23 => 'imagick', - 24 => 'intl', - 25 => 'json', - 26 => 'libxml', - 27 => 'mbstring', - 28 => 'mysqli', - 29 => 'mysqlnd', - 30 => 'openssl', - 31 => 'pcntl', - 32 => 'pcre', - 33 => 'pdo_mysql', - 34 => 'posix', - 35 => 'readline', - 36 => 'redis', - 37 => 'session', - 38 => 'shmop', - 39 => 'soap', - 40 => 'sockets', - 41 => 'sodium', - 42 => 'standard', - 43 => 'sysvmsg', - 44 => 'sysvsem', - 45 => 'sysvshm', - 46 => 'tokenizer', - 47 => 'xml', - 48 => 'xmlreader', - 49 => 'xmlwriter', - 50 => 'xsl', - 51 => 'zip', - 52 => 'zlib', - ), - 'stubFiles' => - array ( - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionClass.stub' => 'ffb6f57879bcd7c9320b7c860d7facd1846e1163', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/iterable.stub' => '41eddc9fba20a88573d9018bdc636b2ffb097dbd', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ArrayObject.stub' => 'e8b4d1501bc7e090ed47d9835862df50f77996cb', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/WeakReference.stub' => '2a6220f72171aa65d979f4f8ee06a707ecb96ff4', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ext-ds.stub' => 'd6ee3aa03606b7a32ba2da3fcaa9bd725b28a868', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/PDOStatement.stub' => 'e8ef2c0c9c8d09136525ee1a9123d958cfe45f3f', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/ReflectionFunctionAbstract.stub' => '1b23e432797a716191e792d673667ebc001643fc', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/date.stub' => '8d63f9636060e7efdfced52e29873f51c7cab46e', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/zip.stub' => 'aff61beeb3e9dfaed0eede432921df5eee2d3b40', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/dom.stub' => '850c98e54136d3dbbd46c1042a9286f7ca4d36f0', - 'phar:///home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan/phpstan/stubs/spl.stub' => '6a8ce07b7dc82139ffd4ab1e84414e984801b065', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub' => '9f3db5633f9b925acca33e4755a40ec2ba6c35b3', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub' => '985e47b964bd8a6f47ddba6fcb44f862b34be882', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub' => '253c8ff2cc21655cf992d5c4208340d87ef8db09', - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub' => 'df2c8740b40a94dce41b3676373bb4af293d9fe3', - ), - 'level' => 'max', -), - 'errorsCallback' => static function (): array { return array ( -); }, - 'dependencies' => array ( - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php' => - array ( - 'fileHash' => '3b9aaf01f9762503fbe5f53cc18d6b4d121542e6', - 'dependentFiles' => - array ( - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php' => - array ( - 'fileHash' => '3d7f50faa35874796fd41e7d7f057f6e86addcf9', - 'dependentFiles' => - array ( - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Checker.php' => - array ( - 'fileHash' => '7843386c24990c1a0d28261dc0c9f056690df83c', - 'dependentFiles' => - array ( - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/CheckerInterface.php' => - array ( - 'fileHash' => '20e0e3b0b1d4895dad30e9c373b1d196384490a3', - 'dependentFiles' => - array ( - 0 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Checker.php', - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Error.php' => - array ( - 'fileHash' => '0a102de52a1b7c84623a772d072e1e4284147d40', - 'dependentFiles' => - array ( - 0 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php', - 1 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php', - 2 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php', - 3 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php', - 4 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php', - 5 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php', - 6 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php', - 7 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php', - 8 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php', - 9 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php', - 10 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php', - 11 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php', - 12 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php', - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ErrorInterface.php' => - array ( - 'fileHash' => '838ac148d465019a05a73dc77eccbba0e217bab7', - 'dependentFiles' => - array ( - 0 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php', - 1 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php', - 2 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Error.php', - 3 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Result.php', - 4 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ResultInterface.php', - 5 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php', - 6 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php', - 7 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php', - 8 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php', - 9 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php', - 10 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php', - 11 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php', - 12 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php', - 13 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php', - 14 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php', - 15 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php', - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Result.php' => - array ( - 'fileHash' => '0ca856e362d773ce4790685e5ba8041d1c7b4c1f', - 'dependentFiles' => - array ( - 0 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php', - 1 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php', - 2 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/AnyType.php', - 3 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php', - 4 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php', - 5 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php', - 6 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php', - 7 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php', - 8 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php', - 9 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php', - 10 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NullableType.php', - 11 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php', - 12 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php', - 13 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php', - 14 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php', - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ResultInterface.php' => - array ( - 'fileHash' => '84d907b8d86a5fbb436188f77718c40f4d2f485d', - 'dependentFiles' => - array ( - 0 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php', - 1 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php', - 2 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Checker.php', - 3 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/CheckerInterface.php', - 4 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Result.php', - 5 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/AnyType.php', - 6 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php', - 7 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php', - 8 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php', - 9 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php', - 10 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php', - 11 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php', - 12 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php', - 13 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NullableType.php', - 14 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php', - 15 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php', - 16 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/OptionalType.php', - 17 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php', - 18 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php', - 19 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/TypeInterface.php', - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/AnyType.php' => - array ( - 'fileHash' => 'cef331b325aebb23be7566f08c88defb40b629de', - 'dependentFiles' => - array ( - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php' => - array ( - 'fileHash' => 'a7470d03f3803c7e698337176062a768379d88b7', - 'dependentFiles' => - array ( - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php' => - array ( - 'fileHash' => '76520ea9255f569ebde2d9b247306713f9ae870c', - 'dependentFiles' => - array ( - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php' => - array ( - 'fileHash' => '47851bdbfb419a208329fb1fce08f38378c65fd4', - 'dependentFiles' => - array ( - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php' => - array ( - 'fileHash' => 'ff8808d89c20e16a0fb37010cb237975b7642cbd', - 'dependentFiles' => - array ( - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php' => - array ( - 'fileHash' => '6aafe60c304e45eeb3e04260169afbd77cc651d5', - 'dependentFiles' => - array ( - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php' => - array ( - 'fileHash' => '391420b4cf1c623b3817cef7d91e464289164f5a', - 'dependentFiles' => - array ( - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php' => - array ( - 'fileHash' => 'c53fc9582d485c109efe0fed4c96c5f1a3169b0f', - 'dependentFiles' => - array ( - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NullableType.php' => - array ( - 'fileHash' => 'b215cc972d15048365279fcc903ca2cb84b3d794', - 'dependentFiles' => - array ( - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php' => - array ( - 'fileHash' => '8d2150264a5599ec3241388818af5b612244f9f9', - 'dependentFiles' => - array ( - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php' => - array ( - 'fileHash' => '4888b64b33661bada942d5dd9b1ca020c66ea4bb', - 'dependentFiles' => - array ( - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/OptionalType.php' => - array ( - 'fileHash' => '4720e072aae5e138fcd8b48593e898c39066cdbc', - 'dependentFiles' => - array ( - 0 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php', - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php' => - array ( - 'fileHash' => 'b2a987965155c0d783bd5c63aa578b2cbdce650d', - 'dependentFiles' => - array ( - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php' => - array ( - 'fileHash' => '4bdf5e28ee0cb5dd76069f4333808d3a15fd8675', - 'dependentFiles' => - array ( - ), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/TypeInterface.php' => - array ( - 'fileHash' => '593f1c8d08c4793d199ec6e7e537518aab202173', - 'dependentFiles' => - array ( - 0 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php', - 1 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php', - 2 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Checker.php', - 3 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/CheckerInterface.php', - 4 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/AnyType.php', - 5 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php', - 6 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php', - 7 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php', - 8 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php', - 9 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php', - 10 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php', - 11 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php', - 12 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NullableType.php', - 13 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php', - 14 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php', - 15 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/OptionalType.php', - 16 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php', - 17 => '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php', - ), - ), -), - 'exportedNodesCallback' => static function (): array { return array ( - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/CountCheck.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Check\\CountCheck', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'child', - 'type' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'count', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - 2 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'namespace' => 'Cubicl\\StructureCheck\\Check', - 'uses' => - array ( - 'countable' => 'Countable', - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Check/NumericRangeCheck.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Check\\NumericRangeCheck', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'child', - 'type' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'upperBound', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 2 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'lowerBound', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - 2 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'namespace' => 'Cubicl\\StructureCheck\\Check', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Checker.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Checker', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\CheckerInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'fulfills', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param mixed $element - */', - 'namespace' => 'Cubicl\\StructureCheck', - 'uses' => - array ( - 'typeinterface' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'element', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'requirement', - 'type' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/CheckerInterface.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedInterfaceNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\CheckerInterface', - 'phpDoc' => NULL, - 'extends' => - array ( - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Error.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Error', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\ErrorInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'message', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - 2 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'getKey', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'string', - 'parameters' => - array ( - ), - )), - 3 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'getMessage', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'string', - 'parameters' => - array ( - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ErrorInterface.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedInterfaceNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\ErrorInterface', - 'phpDoc' => NULL, - 'extends' => - array ( - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Result.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Result', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\ResultInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param array $errors - */', - 'namespace' => 'Cubicl\\StructureCheck', - 'uses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'valid', - 'type' => 'bool', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'errors', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - 2 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'valid', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => true, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - ), - )), - 3 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'invalid', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param array $errors - */', - 'namespace' => 'Cubicl\\StructureCheck', - 'uses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => true, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'errors', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - 4 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'isValid', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'bool', - 'parameters' => - array ( - ), - )), - 5 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'getErrors', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/ResultInterface.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedInterfaceNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\ResultInterface', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @package Cubicl\\StructureCheck - */', - 'namespace' => 'Cubicl\\StructureCheck', - 'uses' => - array ( - ), - )), - 'extends' => - array ( - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/AnyType.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Type\\AnyType', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/BoolType.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Type\\BoolType', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/DatetimeType.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Type\\DatetimeType', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'format', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'datetimeZone', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - 2 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'datetime' => 'DateTime', - 'datetimezone' => 'DateTimeZone', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/EnumType.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Type\\EnumType', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @template T - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param array $values - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'values', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - 2 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param string $key - * @param T $value - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ExactValueType.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Type\\ExactValueType', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - 2 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/FloatType.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Type\\FloatType', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/IntType.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Type\\IntType', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ListType.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Type\\ListType', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'child', - 'type' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - 2 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NullableType.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Type\\NullableType', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'child', - 'type' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - 2 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/NumericType.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Type\\NumericType', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/ObjectType.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Type\\ObjectType', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param TypeInterface[] $children - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'children', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - 2 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/OptionalType.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Type\\OptionalType', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'child', - 'type' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - 2 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/RegexType.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Type\\RegexType', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'regex', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - 2 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/StringType.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Type\\StringType', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => - PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param mixed $value - */', - 'namespace' => 'Cubicl\\StructureCheck\\Type', - 'uses' => - array ( - 'error' => 'Cubicl\\StructureCheck\\Error', - 'result' => 'Cubicl\\StructureCheck\\Result', - 'resultinterface' => 'Cubicl\\StructureCheck\\ResultInterface', - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Cubicl\\StructureCheck\\ResultInterface', - 'parameters' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'key', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - 1 => - PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'value', - 'type' => NULL, - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - )), - ), - )), - ), - '/home/khb-core/current/www/data/Hacktoberfest/php-structure/php-structure-check/src/Type/TypeInterface.php' => - array ( - 0 => - PHPStan\Dependency\ExportedNode\ExportedInterfaceNode::__set_state(array( - 'name' => 'Cubicl\\StructureCheck\\Type\\TypeInterface', - 'phpDoc' => NULL, - 'extends' => - array ( - ), - )), - ), -); }, -]; \ No newline at end of file diff --git a/phpstan.neon.dist b/phpstan.neon.dist deleted file mode 100644 index 773f149..0000000 --- a/phpstan.neon.dist +++ /dev/null @@ -1,8 +0,0 @@ -includes: - - vendor/phpstan/phpstan-phpunit/extension.neon - - vendor/phpstan/phpstan-deprecation-rules/rules.neon -parameters: - tmpDir: data - level: max - paths: - - src \ No newline at end of file From ec6e9705df9a998b561028c78a11e7bdfa49844a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sara=20Gfr=C3=B6rer?= Date: Sat, 24 Oct 2020 15:16:46 +0200 Subject: [PATCH 6/8] Add phpstan-deprecated and -unit --- .gitignore | 1 + composer.json | 9 ++++++--- phpstan.neon.dist | 8 ++++++++ phpunit.xml.dist | 11 +++++++++++ 4 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 phpstan.neon.dist create mode 100644 phpunit.xml.dist diff --git a/.gitignore b/.gitignore index 3d4b9b6..9a8c46e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ vendor composer.lock .phpunit.result.cache +/data/ \ No newline at end of file diff --git a/composer.json b/composer.json index e62ccb5..0c80ab7 100644 --- a/composer.json +++ b/composer.json @@ -23,13 +23,16 @@ "@tests-spec" ], "tests": "phpunit tests", - "analyze": "phpstan analyse --level max src", + "analyze": "phpstan analyse --level max", "tests-spec": "phpspec run --no-interaction" }, "require-dev": { "phpspec/phpspec": "^6.2", - "phpunit/phpunit": "^9.3", - "phpstan/phpstan": "^0.12" + "phpunit/phpunit": "^9.4", + "phpstan/phpstan": "^0.12.51", + "phpstan/phpstan-deprecation-rules": "^0.12.4", + "phpstan/phpstan-phpunit": "^0.12.16", + "squizlabs/php_codesniffer": "^3.5.5" }, "autoload": { "psr-4": { diff --git a/phpstan.neon.dist b/phpstan.neon.dist new file mode 100644 index 0000000..773f149 --- /dev/null +++ b/phpstan.neon.dist @@ -0,0 +1,8 @@ +includes: + - vendor/phpstan/phpstan-phpunit/extension.neon + - vendor/phpstan/phpstan-deprecation-rules/rules.neon +parameters: + tmpDir: data + level: max + paths: + - src \ No newline at end of file diff --git a/phpunit.xml.dist b/phpunit.xml.dist new file mode 100644 index 0000000..a2d1acc --- /dev/null +++ b/phpunit.xml.dist @@ -0,0 +1,11 @@ + + + + + ./tests/ + + + \ No newline at end of file From 67819ce98b0ab703df1c7331965e071df821b68e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sara=20Gfr=C3=B6rer?= Date: Sat, 24 Oct 2020 15:35:44 +0200 Subject: [PATCH 7/8] Include tests folder to phpstan --- phpstan.neon.dist | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpstan.neon.dist b/phpstan.neon.dist index 773f149..da420ab 100644 --- a/phpstan.neon.dist +++ b/phpstan.neon.dist @@ -5,4 +5,5 @@ parameters: tmpDir: data level: max paths: - - src \ No newline at end of file + - src + - tests \ No newline at end of file From 4703aea6f0434c367cc5bd21b850811a965200c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sara=20Gfr=C3=B6rer?= Date: Sat, 24 Oct 2020 16:20:41 +0200 Subject: [PATCH 8/8] Add phpcs --- composer.json | 7 +++++-- phpcs.xml.dist | 21 +++++++++++++++++++++ src/Check/NumericRangeCheck.php | 2 +- src/Type/NullableType.php | 2 +- 4 files changed, 28 insertions(+), 4 deletions(-) create mode 100644 phpcs.xml.dist diff --git a/composer.json b/composer.json index 0c80ab7..f9e81c6 100644 --- a/composer.json +++ b/composer.json @@ -20,11 +20,14 @@ "check": [ "@analyze", "@tests", - "@tests-spec" + "@tests-spec", + "@cs-check" ], "tests": "phpunit tests", "analyze": "phpstan analyse --level max", - "tests-spec": "phpspec run --no-interaction" + "tests-spec": "phpspec run --no-interaction", + "cs-check": "phpcs --parallel=50", + "cs-fix": "phpcbf" }, "require-dev": { "phpspec/phpspec": "^6.2", diff --git a/phpcs.xml.dist b/phpcs.xml.dist new file mode 100644 index 0000000..1c5e692 --- /dev/null +++ b/phpcs.xml.dist @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + src + tests + \ No newline at end of file diff --git a/src/Check/NumericRangeCheck.php b/src/Check/NumericRangeCheck.php index 581ccee..ef3dc38 100644 --- a/src/Check/NumericRangeCheck.php +++ b/src/Check/NumericRangeCheck.php @@ -48,7 +48,7 @@ public function check(string $key, $value): ResultInterface $result = $this->child->check($key, $value); if (!$result->isValid()) { - return $result; + return $result; } if ($this->lowerBound > $value) { diff --git a/src/Type/NullableType.php b/src/Type/NullableType.php index 56b8a97..f3eb64e 100644 --- a/src/Type/NullableType.php +++ b/src/Type/NullableType.php @@ -18,7 +18,7 @@ public function __construct(TypeInterface $child) public function check(string $key, $value): ResultInterface { - if($value === null) { + if ($value === null) { return Result::valid(); }